* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --terracotta: #C97D60;
    --beige: #F5E6D3;
    --cream: #FAF7F2;
    --soft-brown: #8B6F47;
    --muted-gold: #D4AF37;
    --pastel-pink: #F4C2C2;
    --sage-green: #9CAF88;
    --text-dark: #3A3A3A;
    --white: #FFFFFF;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ul, ol {
    margin-left: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Brush Script MT', 'Lucida Handwriting', cursive;
    color: var(--soft-brown);
    font-weight: normal;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

a {
    color: var(--terracotta);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--soft-brown);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
    flex-wrap: nowrap;
}

nav .logo {
    flex-shrink: 0;
}

nav .menu-toggle {
    flex-shrink: 0;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--terracotta);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.logo {
    font-family: 'Brush Script MT', 'Lucida Handwriting', cursive;
    font-size: 1.8rem;
    color: var(--terracotta);
    transition: transform 0.3s ease;
    display: inline-block;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display:none;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 0;
        overflow-y: auto;
    }
    
    .nav-links.active {
        display: flex;
        right: 0;
        transform: translateX(0);
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--beige);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 0;
        width: 100%;
        font-size: 1.1rem;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--terracotta), var(--muted-gold));
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 6rem 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--beige);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 125, 96, 0.35) 0%, rgba(139, 111, 71, 0.25) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.hero:hover::before {
    opacity: 0.5;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--white);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.8;
    animation: fadeInUp 1s ease-out;
}

.hero .btn {
    animation: fadeInUp 1.2s ease-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    position: relative;
    z-index: 10;
}

.hero .btn:hover {
    color: var(--white);
    background-color: var(--soft-brown);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--soft-brown) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(197, 125, 96, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    background: linear-gradient(135deg, var(--soft-brown) 0%, var(--terracotta) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 125, 96, 0.4);
}

.section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--terracotta), var(--muted-gold));
    border-radius: 2px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.grid > * {
    animation: fadeInUp 0.6s ease-out backwards;
}

.grid > *:nth-child(1) {
    animation-delay: 0.1s;
}

.grid > *:nth-child(2) {
    animation-delay: 0.2s;
}

.grid > *:nth-child(3) {
    animation-delay: 0.3s;
}

.card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(197, 125, 96, 0.1);
    display: flex;
    flex-direction: column;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--terracotta), var(--muted-gold), var(--sage-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(197, 125, 96, 0.2);
    border-color: rgba(197, 125, 96, 0.3);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.card:hover img {
    transform: scale(1.05);
}

.card h3 {
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.card:hover h3 {
    color: var(--terracotta);
}

.card p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.7;
    flex-grow: 1;
}

.card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.about-section {
    background: linear-gradient(135deg, var(--beige) 0%, rgba(245, 230, 211, 0.5) 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(197, 125, 96, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.feature {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(197, 125, 96, 0.15);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.feature:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    animation-play-state: paused;
}

form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(197, 125, 96, 0.1);
    transition: box-shadow 0.3s ease;
}

form:hover {
    box-shadow: 0 12px 40px rgba(197, 125, 96, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--soft-brown);
    font-size: 0.95rem;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--beige);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--cream);
    color: var(--text-dark);
}

form input[type="text"]::placeholder,
form input[type="email"]::placeholder,
form textarea::placeholder {
    color: rgba(58, 58, 58, 0.5);
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(197, 125, 96, 0.1);
    transform: translateY(-2px);
}

form textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--cream);
    border-radius: 10px;
    border: 1px solid var(--beige);
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--terracotta);
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1.5;
}

footer {
    background: linear-gradient(135deg, var(--soft-brown) 0%, #6B5638 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    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(255,255,255,0.4), transparent);
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2.5rem;
    }
}

.footer-section {
    position: relative;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--muted-gold), transparent);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-section p:last-child {
    margin-bottom: 0;
}

.footer-section a {
    color: rgba(245, 230, 211, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--muted-gold);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-section a:hover::after {
    width: 100%;
}

.copyright {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 1;
}

.copyright p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.privacy-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.privacy-links a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.privacy-links a:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.privacy-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.privacy-popup.active {
    display: flex;
}

.popup-content {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.4s ease-out;
    border: 1px solid rgba(197, 125, 96, 0.2);
}

.popup-content h2 {
    margin-bottom: 1rem;
}

.popup-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--sage-green) 0%, #7A9470 100%);
    box-shadow: 0 4px 15px rgba(156, 175, 136, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #7A9470 0%, var(--sage-green) 100%);
    box-shadow: 0 8px 25px rgba(156, 175, 136, 0.4);
}

.success-page {
    text-align: center;
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.success-icon {
    font-size: 4rem;
    color: var(--sage-green);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    background: rgba(156, 175, 136, 0.1);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(156, 175, 136, 0.3);
}

.map-container {
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(197, 125, 96, 0.2);
    transition: box-shadow 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 12px 40px rgba(197, 125, 96, 0.25);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(197, 125, 96, 0.1);
    text-align: center;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(197, 125, 96, 0.15);
    border-color: rgba(197, 125, 96, 0.3);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.contact-info-card h3 {
    margin-bottom: 0.8rem;
    color: var(--terracotta);
    font-size: 1.3rem;
}

.contact-info-card p {
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

.contact-form-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(197, 125, 96, 0.1);
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-section {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .contact-info-card {
        flex: 1;
        min-width: 200px;
    }
}


.map-container iframe {
    width: 100%;
    height: 450px;
    display: block;
    border: none;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .container {
        padding: 0 18px;
    }
    
    .logo {
        font-size: 1.7rem;
    }
    
    nav {
        padding: 1rem 0;
    }
    
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 4rem 0;
        min-height: 50vh;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        margin-bottom: 2.5rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .card {
        padding: 2rem;
    }
    
    .card img {
        height: 200px;
    }
    
    .features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .feature {
        min-width: 100%;
    }
    
    form {
        padding: 2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info-section {
        flex-direction: column;
    }
    
    .contact-info-card {
        width: 100%;
    }
    
    footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .copyright {
        padding-top: 2rem;
    }
    
    .copyright p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .privacy-links {
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .privacy-links a {
        padding: 0.5rem 0.9rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 1.6rem;
    }
    
    nav {
        padding: 1rem 0;
        flex-direction: row;
        align-items: center;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        width: 260px;
    }
    
    .hero {
        padding: 2.5rem 0;
        min-height: 45vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.85rem;
    }
    
    .hero .btn {
        font-size: 0.9rem;
        padding: 0.8rem 2rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .card img {
        height: 180px;
    }
    
    .card h3 {
        font-size: 1.3rem;
    }
    
    .card p {
        font-size: 0.9rem;
    }
    
    .feature {
        padding: 1.8rem 1.2rem;
    }
    
    .feature-icon {
        font-size: 3rem;
    }
    
    form {
        padding: 1.8rem;
    }
    
    form input[type="text"],
    form input[type="email"],
    form textarea {
        padding: 0.9rem;
    }
    
    .contact-wrapper {
        gap: 2rem;
    }
    
    .contact-info-card {
        padding: 1.8rem;
    }
    
    .contact-form-section {
        padding: 2rem;
    }
    
    .map-container {
        margin: 1.5rem auto 0;
    }
    
    .map-container iframe {
        height: 320px;
    }
    
    footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-section {
        text-align: center;
        padding: 0 0.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.7rem;
    }
    
    .footer-section a {
        font-size: 0.9rem;
    }
    
    .copyright {
        padding-top: 1.5rem;
    }
    
    .copyright p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .privacy-links {
        gap: 0.4rem;
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .privacy-links a {
        padding: 0.45rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    html {
        font-size: 12px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    nav {
        padding: 0.8rem 0;
        flex-direction: row;
        align-items: center;
    }
    
    .menu-toggle {
        padding: 0.4rem;
        flex-shrink: 0;
    }
    
    .menu-toggle span {
        width: 22px;
        height: 2.5px;
    }
    
    .nav-links {
        width: 240px;
        padding: 4.5rem 1.5rem 2rem;
    }
    
    .nav-links {
        font-size: 0.85rem;
        gap: 0.3rem;
    }
    
    .hero {
        padding: 2rem 0;
        min-height: 35vh;
    }
    
    .hero h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 0.85rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero .btn {
        font-size: 0.75rem;
        padding: 0.7rem 1.2rem;
        letter-spacing: 0.3px;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        padding-bottom: 0.8rem;
    }
    
    .section-title::after {
        width: 60px;
        height: 2px;
    }
    
    .card {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .card img {
        height: 150px;
        margin-bottom: 1rem;
    }
    
    .card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .card p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    
    .card .btn {
        font-size: 0.75rem;
        padding: 0.6rem 1.2rem;
        width: 100%;
    }
    
    .feature {
        padding: 1.5rem 1rem;
        min-width: auto;
    }
    
    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .feature h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .feature p {
        font-size: 0.85rem;
    }
    
    form {
        padding: 1.2rem;
        border-radius: 16px;
    }
    
    form label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    form input[type="text"],
    form input[type="email"],
    form textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    form textarea {
        min-height: 100px;
    }
    
    .checkbox-group {
        padding: 0.8rem;
        font-size: 0.8rem;
    }
    
    .checkbox-group label {
        font-size: 0.8rem;
    }
    
    .btn {
        font-size: 0.75rem;
        padding: 0.7rem 1.2rem;
    }
    
    .contact-wrapper {
        gap: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-info-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .contact-info-card p {
        font-size: 0.85rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .map-container {
        margin: 1rem auto 0;
        border-radius: 16px;
    }
    
    .map-container iframe {
        height: 280px;
    }
    
    footer {
        padding: 2rem 0 1.2rem;
    }
    
    .footer-content {
        gap: 1.8rem;
        margin-bottom: 1.8rem;
    }
    
    .footer-section {
        text-align: center;
        padding: 0;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        padding-bottom: 0.6rem;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 2px;
    }
    
    .footer-section p {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 0.5rem;
    }
    
    .footer-section a {
        font-size: 0.8rem;
    }
    
    .copyright {
        padding-top: 1.5rem;
    }
    
    .copyright p {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }
    
    .privacy-links {
        gap: 0.3rem;
        margin-top: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .privacy-links a {
        padding: 0.35rem 0.6rem;
        font-size: 0.7rem;
        border-radius: 6px;
    }
    
    .popup-content {
        padding: 1.5rem;
        border-radius: 16px;
        max-width: 95%;
    }
    
    .popup-content h2 {
        font-size: 1.3rem;
    }
    
    .popup-content p {
        font-size: 0.85rem;
    }
    
    .popup-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .popup-buttons .btn {
        width: 100%;
    }
    
    .success-icon {
        font-size: 3rem;
        width: 80px;
        height: 80px;
        line-height: 80px;
    }
    
    .success-page h1 {
        font-size: 1.8rem;
    }
    
    .success-page p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
}

