@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary: #36454F;
    --accent: #F4C2C2;
    --background: #FFFFFF;
    --highlight: #D4AF37;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section > .container {
    animation: fadeInUp 0.6s ease-out;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary);
    background: linear-gradient(135deg, #FAF9F7 0%, #F5F4F2 50%, #F0EFED 100%);
    background-attachment: fixed;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(ellipse 1200px 800px at 15% 40%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 1000px 700px at 85% 70%, rgba(244, 194, 194, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse 800px 600px at 50% 20%, rgba(54, 69, 79, 0.02) 0%, transparent 50%),
        repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(212, 175, 55, 0.008) 3px, rgba(212, 175, 55, 0.008) 6px),
        repeating-linear-gradient(90deg, transparent, transparent 4px, rgba(244, 194, 194, 0.006) 4px, rgba(244, 194, 194, 0.006) 8px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 200px 200px, 200px 200px;
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.02) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(244, 194, 194, 0.02) 0%, transparent 30%);
    pointer-events: none;
    z-index: -1;
    animation: pulse 20s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--highlight);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: 
        radial-gradient(ellipse at top, rgba(255,255,255,0.4) 0%, transparent 70%),
        linear-gradient(to bottom, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.96) 50%, rgba(250,249,247,0.95) 100%);
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(212, 175, 55, 0.02) 2px, rgba(212, 175, 55, 0.02) 4px);
    backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 
        0 4px 20px rgba(54, 69, 79, 0.08),
        0 1px 0 rgba(255,255,255,0.8) inset,
        0 -1px 0 rgba(212, 175, 55, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    position: relative;
    min-height: 60px;
    place-content: center;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--highlight);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--highlight);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--highlight);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

section {
    padding: 4rem 0;
    position: relative;
}

section:nth-child(even) {
    background: 
        radial-gradient(ellipse at top left, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(244, 194, 194, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(250,249,247,0.9) 100%);
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(212,175,55,0.015) 40px, rgba(212,175,55,0.015) 80px),
        repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(212,175,55,0.01) 60px, rgba(212,175,55,0.01) 120px);
    position: relative;
}

section:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(244, 194, 194, 0.02) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

section:nth-child(odd):not(.hero) {
    background: 
        radial-gradient(ellipse at top right, rgba(244, 194, 194, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, rgba(250,249,247,0.9) 0%, rgba(255,255,255,0.7) 100%);
    background-image: 
        repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(244,194,194,0.015) 40px, rgba(244,194,194,0.015) 80px),
        repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(244,194,194,0.01) 60px, rgba(244,194,194,0.01) 120px);
    position: relative;
}

section:nth-child(odd):not(.hero)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 30%, rgba(244, 194, 194, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 20% 70%, rgba(212, 175, 55, 0.02) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

section > .container {
    position: relative;
    z-index: 1;
}

.hero {
    background: 
        linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: #D4AF37;
    text-align: center;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(255, 255, 255, 0.03) 50px,
            rgba(255, 255, 255, 0.03) 100px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(255, 255, 255, 0.03) 50px,
            rgba(255, 255, 255, 0.03) 100px
        );
    animation: rotate 40s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
}

.hero-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 4rem 3rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.hero h1 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: gray;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 1;
    font-weight: 400;
    line-height: 1.6;
}

.hero-content .btn {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    color: #667eea;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-content .btn:hover {
    background: rgba(255, 255, 255, 1);
    color: #764ba2;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-content .btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: gray;
}

.hero-content .btn-primary:hover {
    background: rgba(255, 255, 255, 1);
    color: #764ba2;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent) 0%, #F0B8B8 100%);
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(244, 194, 194, 0.3), inset 0 1px 0 rgba(255,255,255,0.5);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    background: linear-gradient(135deg, var(--highlight) 0%, #E5C04A 100%);
    color: #1a1a2e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-primary {
    background: linear-gradient(135deg, var(--highlight) 0%, #E5C04A 100%);
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent) 0%, #F0B8B8 100%);
    color: var(--primary);
    box-shadow: 0 8px 25px rgba(244, 194, 194, 0.4), inset 0 1px 0 rgba(255,255,255,0.5);
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid > div img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(54, 69, 79, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.grid > div:hover img {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(54, 69, 79, 0.18);
}

.card {
    background: 
        radial-gradient(ellipse at top left, rgba(255,255,255,0.6) 0%, transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(250,249,247,0.4) 0%, transparent 60%),
        linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(250,249,247,0.95) 100%);
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(212, 175, 55, 0.02) 2px, rgba(212, 175, 55, 0.02) 4px);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 
        0 10px 30px rgba(54, 69, 79, 0.1), 
        0 4px 12px rgba(54, 69, 79, 0.06),
        inset 0 1px 0 rgba(255,255,255,0.8),
        inset 0 -1px 0 rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transition: left 0.5s ease;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(54, 69, 79, 0.12), 0 4px 12px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.text-center {
    text-align: center;
}

.text-center h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.text-center h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), var(--highlight), rgba(212, 175, 55, 0.3), transparent);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.text-center h2::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(244, 194, 194, 0.4), transparent);
    border-radius: 1px;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.accent-text {
    color: var(--highlight);
}

form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(54, 69, 79, 0.15);
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
    outline: none;
    border-color: var(--highlight);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2), 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: rgba(255,255,255,1);
    transform: translateY(-2px);
}

form textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-group label {
    font-weight: 400;
    cursor: pointer;
}

footer {
    background: 
        radial-gradient(ellipse at top, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at bottom, rgba(244, 194, 194, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, var(--primary) 0%, #2a3640 30%, #1e2529 70%, #0f1416 100%);
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(212, 175, 55, 0.06) 3px, rgba(212, 175, 55, 0.06) 6px),
        repeating-linear-gradient(-45deg, transparent, transparent 5px, rgba(244, 194, 194, 0.04) 5px, rgba(244, 194, 194, 0.04) 10px),
        radial-gradient(circle at 25% 35%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(244, 194, 194, 0.08) 0%, transparent 50%);
    color: gray;
    padding: 4rem 0 1.5rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), var(--highlight), rgba(212, 175, 55, 0.5), transparent);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(212, 175, 55, 0.02) 1deg, transparent 2deg, transparent 15deg);
    animation: rotate 80s linear infinite;
    pointer-events: none;
    z-index: 0;
}

footer > .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--highlight);
    margin-bottom: 1rem;
}

.footer-section a {
    color: gray;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #E5C04A;
    font-size: 0.9rem;
}

.privacy-popup {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #2a3640 100%);
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(212, 175, 55, 0.1) 2px, rgba(212, 175, 55, 0.1) 4px);
    color: #E5C04A;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(212, 175, 55, 0.2);
    max-width: 400px;
    z-index: 10000;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.privacy-popup.show {
    display: block;
}

.privacy-popup p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color:black;
}

.privacy-popup-buttons {
    display: flex;
    gap: 1rem;
}

.privacy-popup button {
    padding: 0.75rem 1.75rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.privacy-popup .btn-accept {
    background: linear-gradient(135deg, var(--highlight) 0%, #E5C04A 100%);
    color: #1a1a2e;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.privacy-popup .btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
}

.privacy-popup .btn-decline {
    background-color: transparent;
    color: black;
    border: 2px solid black;
}

.privacy-popup .btn-decline:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--background);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .logo{
        font-size: 1.2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero {
        padding: 5rem 0 4rem;
        min-height: 50vh;
    }

    .hero-content {
        padding: 2.5rem 2rem;
        border-radius: 16px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    section {
        padding: 2rem 0;
    }

    .hero {
        padding: 3rem 0;
    }

    .privacy-popup {
        bottom: 10px;
        right: 10px;
        left: 10px;
        padding: auto;
        max-width: none;
    }
    .privacy-popup-buttons{
        transform: translateX(-15px);
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero {
        padding: 4rem 0 3rem;
        min-height: 45vh;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .card {
        padding: 1.5rem;
    }
}

