/* ===== Security & Privacy Page CSS - Fully Responsive ===== */

/* Reset for better mobile compatibility */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-tap-highlight-color: transparent;
    font-size: 16px;
    scroll-behavior: smooth;
}

/* Base Styles - Mobile First Approach */
body {
    font-family: 'Poppins', 'Segoe UI', -apple-system, sans-serif;
    line-height: 1.6;
}

.security-container {
    padding-top: 70px;
    background: wheat;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    transition: background 0.3s ease;
}

/* Dark Mode Styles */
[data-theme="dark"] .security-container {
    background: #000000;
}

[data-theme="dark"] {
    background: #000000;
}

/* Hero Section - Mobile First */
.security-hero {
    background-color: wheat;
    color: #163017;
    text-align: center;
    padding: 60px 15px 50px;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

[data-theme="dark"] .security-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: #ffffff;
}

.security-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
    opacity: 0.1;
}

[data-theme="dark"] .security-hero::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
}

.hero-content {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 10px;
}

.hero-icon {
    font-size: 3rem;
    color: #163017;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
    transition: color 0.3s ease;
}

[data-theme="dark"] .hero-icon {
    color: #ffffff;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.security-hero h1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
    line-height: 1.2;
    padding: 0 5px;
    color: #163017;
    transition: color 0.3s ease;
}

[data-theme="dark"] .security-hero h1 {
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1rem;
    color: #163017;
    max-width: 100%;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
    padding: 0 5px;
    opacity: 0.9;
    transition: color 0.3s ease;
}

[data-theme="dark"] .hero-subtitle {
    color: #ffffff;
    opacity: 0.8;
}

.hero-badge {
    display: inline-block;
    background: rgba(22, 48, 23, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #163017;
    border: 2px solid rgba(22, 48, 23, 0.3);
    transition: all 0.3s ease;
}

[data-theme="dark"] .hero-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(22, 48, 23, 0.2);
    transition: border-color 0.3s ease;
}

[data-theme="dark"] .hero-meta {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.meta-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #163017;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: color 0.3s ease;
}

[data-theme="dark"] .meta-item {
    color: #ffffff;
    opacity: 0.8;
}

.meta-item i {
    color: #3e7539;
    font-size: 1rem;
    transition: color 0.3s ease;
}

[data-theme="dark"] .meta-item i {
    color: #60b558;
}

.meta-item strong {
    color: #163017;
    margin-left: 0.25rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

[data-theme="dark"] .meta-item strong {
    color: #ffffff;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #163017;
    animation: bounce 2s infinite;
    cursor: pointer;
    font-size: 1.25rem;
    opacity: 0.7;
    transition: color 0.3s ease;
}

[data-theme="dark"] .scroll-indicator {
    color: #ffffff;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-8px) translateX(-50%); }
    60% { transform: translateY(-4px) translateX(-50%); }
}

/* Quick Navigation - Mobile First */
.quick-nav {
    background: #f7dcb1;
    padding: 1rem 0;
    border-bottom: 1px solid #e6c28c;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 70px;
    z-index: 900;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

[data-theme="dark"] .quick-nav {
    background: #1a1a1a;
    border-bottom: 1px solid #333333;
}

.quick-nav .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.quick-nav h3 {
    color: #163017;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    justify-content: center;
    font-weight: 600;
    transition: color 0.3s ease;
}

[data-theme="dark"] .quick-nav h3 {
    color: #ffffff;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: wheat;
    color: #163017;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #e6c28c;
    text-align: center;
    width: 100%;
}

[data-theme="dark"] .nav-link {
    background: #333333;
    color: #ffffff;
    border-color: #444444;
}

.nav-link:hover, .nav-link:active {
    background: #60b558;
    color: white;
    border-color: #60b558;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(96, 181, 88, 0.3);
}

/* Security Section - Mobile First */
.security-section {
    padding: 2.5rem 0;
    width: 100%;
    transition: background 0.3s ease;
}

.security-section .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    text-align: center;
    padding: 0 10px;
}

.section-icon {
    width: 60px;
    height: 60px;
    background: rgba(96, 181, 88, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #3e7539;
    margin: 0 auto;
    border: 2px solid #60b558;
    transition: all 0.3s ease;
}

[data-theme="dark"] .section-icon {
    background: rgba(96, 181, 88, 0.1);
    color: #60b558;
    border-color: #60b558;
}

.section-header h2 {
    font-size: 1.75rem;
    color: #163017;
    width: 100%;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

[data-theme="dark"] .section-header h2 {
    color: #ffffff;
}

.section-badge {
    background: linear-gradient(135deg, #60b558, #3e7539);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

[data-theme="dark"] .section-badge {
    background: linear-gradient(135deg, #60b558, #3e7539);
}

/* Protection Grid - Mobile First */
.protection-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.protection-card {
    background: #FFFEF9;
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #f7dcb1;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .protection-card {
    background: #1a1a1a;
    border-color: #333333;
    color: #ffffff;
}

.protection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #60b558, #3e7539);
}

.protection-card:hover, .protection-card:active {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: #60b558;
}

[data-theme="dark"] .protection-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(96, 181, 88, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: #3e7539;
    border: 2px solid rgba(96, 181, 88, 0.3);
    transition: all 0.3s ease;
}

[data-theme="dark"] .card-icon {
    background: rgba(96, 181, 88, 0.1);
    color: #60b558;
    border-color: rgba(96, 181, 88, 0.2);
}

.protection-card h3 {
    color: #163017;
    margin-bottom: 0.75rem;
    text-align: center;
    font-size: 1.35rem;
    line-height: 1.3;
    font-weight: 700;
    transition: color 0.3s ease;
}

[data-theme="dark"] .protection-card h3 {
    color: #ffffff;
}

.protection-card p {
    color: #44562e;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.5;
    font-size: 0.95rem;
    opacity: 0.9;
    transition: color 0.3s ease;
}

[data-theme="dark"] .protection-card p {
    color: #cccccc;
}

.card-features {
    list-style: none;
    padding: 0;
    margin-top: 1.25rem;
}

.card-features li {
    padding: 0.5rem 0;
    color: #163017;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    justify-content: center;
    transition: color 0.3s ease;
}

[data-theme="dark"] .card-features li {
    color: #ffffff;
}

.card-features i {
    color: #60b558;
    font-size: 1rem;
}

/* Don't Section - Mobile First */
.dont-section {
    background: #f7dcb1;
    padding: 3rem 0;
    transition: background 0.3s ease;
}

[data-theme="dark"] .dont-section {
    background: #000000;
}

.dont-list {
    margin-top: 1.5rem;
}

.dont-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #FFFEF9;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    border-left: 4px solid #60b558;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .dont-item {
    background: #1a1a1a;
    color: #ffffff;
}

.dont-item:hover, .dont-item:active {
    transform: translateX(8px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] .dont-item:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.dont-icon {
    width: 50px;
    height: 50px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #DC2626;
    flex-shrink: 0;
    border: 2px solid rgba(220, 38, 38, 0.2);
}

[data-theme="dark"] .dont-icon {
    background: rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.3);
}

.dont-content h4 {
    color: #163017;
    margin-bottom: 0.25rem;
    font-size: 1.15rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

[data-theme="dark"] .dont-content h4 {
    color: #ffffff;
}

.dont-content p {
    color: #44562e;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
    transition: color 0.3s ease;
}

[data-theme="dark"] .dont-content p {
    color: #cccccc;
}

/* Contact Grid - Mobile First */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.contact-card {
    background: #FFFEF9;
    padding: 1.75rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f7dcb1;
    width: 100%;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .contact-card {
    background: #1a1a1a;
    border-color: #333333;
    color: #ffffff;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #60b558, #3e7539);
}

.contact-card:hover, .contact-card:active {
    transform: translateY(-8px);
    border-color: #60b558;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .contact-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(96, 181, 88, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: #3e7539;
    border: 2px solid rgba(96, 181, 88, 0.3);
    transition: all 0.3s ease;
}

[data-theme="dark"] .contact-icon {
    background: rgba(96, 181, 88, 0.1);
    color: #60b558;
    border-color: rgba(96, 181, 88, 0.2);
}

.contact-card h4 {
    color: #163017;
    margin-bottom: 0.5rem;
    font-size: 1.35rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

[data-theme="dark"] .contact-card h4 {
    color: #ffffff;
}

.contact-card a {
    color: #60b558;
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin: 0.5rem 0;
    font-size: 1rem;
    word-break: break-all;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #3e7539;
    text-decoration: underline;
}

.contact-card p {
    color: #44562e;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
    transition: color 0.3s ease;
}

[data-theme="dark"] .contact-card p {
    color: #cccccc;
}

/* Summary Section - Mobile First */
.summary-section {
    background: #f7dcb1;
    padding: 3rem 0;
    transition: background 0.3s ease;
}

[data-theme="dark"] .summary-section {
    background: #000000;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.summary-point {
    background: #FFFEF9;
    padding: 1.75rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
    border: 2px solid #f7dcb1;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .summary-point {
    background: #1a1a1a;
    border-color: #333333;
    color: #ffffff;
}

.summary-point:hover, .summary-point:active {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: #60b558;
}

[data-theme="dark"] .summary-point:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.point-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #60b558, #3e7539);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.summary-point h4 {
    color: #163017;
    margin: 1.25rem 0 0.5rem;
    font-size: 1.35rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

[data-theme="dark"] .summary-point h4 {
    color: #ffffff;
}

.summary-point p {
    color: #44562e;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
    transition: color 0.3s ease;
}

[data-theme="dark"] .summary-point p {
    color: #cccccc;
}

.final-note {
    background: #FFFEF9;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 2rem;
    border-left: 6px solid #60b558;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    transition: all 0.3s ease;
}

[data-theme="dark"] .final-note {
    background: #1a1a1a;
    color: #ffffff;
}

.final-note i {
    color: #60b558;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.final-note p {
    color: #163017;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
    transition: color 0.3s ease;
}

[data-theme="dark"] .final-note p {
    color: #ffffff;
}

/* ===== Text Only Footer - Mobile First ===== */
footer {
    background-color: wheat;;
    color: #577d25;
    padding: 2.5rem 0 1.5rem;
    margin-top: auto;
    width: 100%;
    text-align: center;
    border-top: 4px solid #60b558;
    transition: all 0.3s ease;
}

[data-theme="dark"] footer {
    background: #000000;
    color: #ffffff;
    border-top-color: #60b558;
}

.footer-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-logo {
    margin-bottom: 1rem;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: #f7dcb1;
    display: inline-block;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

[data-theme="dark"] .logo-text {
    color: #ffffff;
}

.project-info {
    font-size: 1rem;
    color: #f7dcb1;
    margin: 0.5rem 0;
    line-height: 1.5;
    opacity: 0.9;
    transition: color 0.3s ease;
}

[data-theme="dark"] .project-info {
    color: #ffffff;
    opacity: 0.8;
}

.project-desc {
    font-size: 0.95rem;
    color: #f7dcb1;
    margin: 0.5rem 0 1rem;
    opacity: 0.8;
    transition: color 0.3s ease;
}

[data-theme="dark"] .project-desc {
    color: #cccccc;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(247, 220, 177, 0.2);
    border-bottom: 1px solid rgba(247, 220, 177, 0.2);
    transition: border-color 0.3s ease;
}

[data-theme="dark"] .footer-links {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links a {
    color: #f7dcb1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    font-weight: 500;
}

[data-theme="dark"] .footer-links a {
    color: #ffffff;
}

.footer-links a:hover, .footer-links a:active {
    color: #60b558;
    text-decoration: underline;
    transform: translateY(-2px);
}

.copyright {
    margin-top: 1rem;
    padding-top: 1rem;
    color: rgba(247, 220, 177, 0.7);
    font-size: 0.85rem;
    border-top: 1px solid rgba(247, 220, 177, 0.2);
    transition: all 0.3s ease;
}

[data-theme="dark"] .copyright {
    color: rgba(255, 255, 255, 0.6);
    border-top-color: rgba(255, 255, 255, 0.2);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Small phones (iPhone SE, small Android) */
@media (max-width: 320px) {
    .security-hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-icon {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .protection-card,
    .contact-card,
    .summary-point,
    .final-note,
    .dont-item {
        padding: 1.25rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
}

/* Medium phones (iPhone 12/13/14, most Android phones) */
@media (min-width: 321px) and (max-width: 480px) {
    .security-hero {
        padding: 70px 15px 60px;
    }
    
    .security-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        width: auto;
        min-width: 150px;
    }
}

/* Large phones (iPhone Plus, large Android) */
@media (min-width: 481px) and (max-width: 767px) {
    .security-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-icon {
        font-size: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .protection-grid,
    .contact-grid,
    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-links {
        flex-direction: row;
        justify-content: center;
    }
    
    .nav-link {
        width: auto;
        min-width: 160px;
    }
}

/* Tablets (iPad, small tablets) */
@media (min-width: 768px) and (max-width: 1023px) {
    .security-container {
        padding-top: 80px;
    }
    
    .security-hero {
        padding: 100px 20px 80px;
    }
    
    .security-hero h1 {
        font-size: 3rem;
    }
    
    .hero-icon {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-meta {
        flex-direction: row;
        gap: 2rem;
    }
    
    .quick-nav {
        top: 80px;
    }
    
    .protection-grid,
    .contact-grid,
    .summary-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .nav-links {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .nav-link {
        width: auto;
    }
    
    .section-header {
        flex-direction: row;
        text-align: left;
        align-items: center;
    }
    
    .section-header h2 {
        text-align: left;
        margin-bottom: 0;
    }
    
    .section-icon {
        margin: 0;
    }
    
    .security-section .container {
        max-width: 95%;
    }
}

/* Desktop and large tablets */
@media (min-width: 1024px) {
    .security-hero {
        padding: 120px 20px 100px;
    }
    
    .security-hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-content {
        max-width: 800px;
    }
    
    .hero-subtitle {
        max-width: 600px;
    }
    
    .security-section .container {
        max-width: 1200px;
    }
    
    .footer-content {
        max-width: 1200px;
    }
    
    .protection-grid,
    .contact-grid,
    .summary-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .protection-card,
    .contact-card,
    .summary-point {
        padding: 2rem;
    }
    
    .dont-item {
        padding: 1.75rem;
    }
    
    .final-note {
        padding: 2.5rem;
    }
}

/* Large desktop */
@media (min-width: 1440px) {
    .security-hero h1 {
        font-size: 4rem;
    }
    
    .hero-icon {
        font-size: 5rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .security-section .container {
        max-width: 1400px;
    }
}

/* Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .security-hero {
        padding: 80px 20px 60px;
    }
    
    .quick-nav {
        top: 80px;
    }
    
    .security-container {
        min-height: -webkit-fill-available;
    }
}

/* Prevent text size adjustment on orientation change */
@media screen and (orientation: landscape) {
    .security-hero {
        padding: 80px 20px 60px;
    }
    
    .security-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-icon {
        font-size: 3rem;
    }
    
    @media (max-width: 1023px) {
        .protection-grid,
        .contact-grid,
        .summary-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .protection-card,
    .contact-card,
    .summary-point,
    .dont-item,
    .final-note {
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    }
    
    .protection-card:hover,
    .contact-card:hover,
    .summary-point:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    [data-theme="dark"] .protection-card:hover,
    [data-theme="dark"] .contact-card:hover,
    [data-theme="dark"] .summary-point:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
}

/* Fix for very small heights */
@media (max-height: 600px) {
    .security-hero {
        padding: 50px 15px 40px;
    }
    
    .hero-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .security-hero h1 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .scroll-indicator {
        display: none;
    }
}