* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

:root {
    --primary-green: #6DBE45;
    --earth-brown: #8B5E3C;
    --warm-yellow: #FFD966;
    --sky-blue: #A3D4F7;
    --bg-beige: #FAF9F6;
    --bg-gray: #F2F2F2;
    --footer-green: #4B7A4B;
    --text-dark: #333;
    --text-light: #fff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-beige);
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}

p {
    margin-bottom: 1.25rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--primary-green);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--earth-brown);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

header {
    background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)), url('../images/background.jpg') center/cover;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid rgba(109, 190, 69, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 0;
    min-height: 80px;
    gap: 1rem;
    width: 100%;
}

.logo {
    font-family: 'Merriweather', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-green);
    transition: transform 0.3s ease, color 0.3s ease;
    letter-spacing: -0.5px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-decoration: none;
    display: inline-block;
    flex-shrink: 0;
}

.logo:hover {
    color: var(--earth-brown);
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.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);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

nav li {
    position: relative;
}

nav a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.4rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--primary-green);
    background-color: rgba(109, 190, 69, 0.08);
}

nav a:hover::before {
    width: 60%;
}

nav a:active {
    background-color: rgba(109, 190, 69, 0.15);
}

nav a.active {
    color: var(--primary-green);
    background-color: rgba(109, 190, 69, 0.12);
}

nav a.active::before {
    width: 60%;
}

.hero {
    color: var(--text-light);
    padding: 10rem 3rem;
    text-align: center;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/background1.jpg') center/cover;
}

.hero-home {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/background1.jpg') center/cover;
}

.hero-services {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/background2.jpg') center/cover;
}

.hero-products {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/background3.jpg') center/cover;
}

.hero-about {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/background.jpg') center/cover;
}

.hero-contacts {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/background4.jpg') center/cover;
}

.hero-success {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--footer-green) 100%);
    color: var(--text-light);
    min-height: 400px;
}

.hero h1 {
    color: var(--text-light);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--primary-green);
    color: var(--text-light);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background-color: var(--earth-brown);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: var(--warm-yellow);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--sky-blue);
    color: var(--text-dark);
}

section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 4rem;
    margin-top: 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--text-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(109, 190, 69, 0.3);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card-content {
    padding: 2rem;
}

.product-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
}

.feature-section.reverse {
    direction: rtl;
}

.feature-section.reverse > * {
    direction: ltr;
}

.feature-image {
    border-radius: 10px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: auto;
}

.feature-content h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.feature-content p {
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.testimonials {
    background-color: var(--bg-gray);
    padding: 6rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--text-light);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-green);
    position: absolute;
    top: -10px;
    left: 20px;
    opacity: 0.3;
}

.stars {
    color: var(--warm-yellow);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--earth-brown);
}

.testimonial-card p {
    margin-bottom: 1.5rem;
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto;
    background: var(--text-light);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--bg-gray);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.contact-info-section {
    margin: 3rem 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-card {
    background: var(--text-light);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-green);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(109, 190, 69, 0.2);
}

.contact-info-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-info-card p {
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 1.8;
}

.map-container {
    width: 100%;
    margin: 3rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.success-icon {
    width: 120px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    border: 4px solid rgba(255, 255, 255, 0.3);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.success-content {
    text-align: center;
    padding: 4rem 0;
    max-width: 700px;
    margin: 0 auto;
}

.success-content h2 {
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.success-message {
    margin: 2rem 0;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.success-note {
    margin: 2rem 0;
    color: #666;
    line-height: 1.8;
}

.success-buttons {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

footer {
    background-color: var(--footer-green);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.footer-section a {
    color: var(--text-light);
    display: block;
    margin-bottom: 0.75rem;
}

.footer-section a:hover {
    color: var(--warm-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 2rem;
}

.footer-bottom a {
    color: var(--text-light);
    margin: 0 0.5rem;
    display: inline-block;
    word-break: break-word;
}

.footer-bottom p {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--text-light);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    max-width: 400px;
    z-index: 10000;
    display: none;
}

.privacy-popup.show {
    display: block;
}

.privacy-popup p {
    margin-bottom: 1rem;
}

.privacy-popup-buttons {
    display: flex;
    gap: 1rem;
}

.privacy-popup-buttons .btn {
    flex: 1;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

@keyframes glow {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(109, 190, 69, 0.5);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(109, 190, 69, 0.8);
    }
}

.glow-effect {
    animation: glow 2s ease-in-out infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.ripple-effect {
    position: relative;
    overflow: hidden;
}

.ripple-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(163, 212, 247, 0.5);
    transform: translate(-50%, -50%);
    animation: ripple 2s ease-out infinite;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    header .container {
        padding: 0 20px;
    }
    
    footer .container {
        padding: 0 20px;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .hero {
        padding: 6rem 2rem;
        min-height: 450px;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
    
    nav {
        padding: 1.25rem 0;
        min-height: 70px;
        position: relative;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .logo {
        font-size: 1.5rem;
        padding: 0.45rem 0.9rem;
        max-width: calc(100% - 80px);
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--text-light);
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        width: 100%;
        padding: 1rem 2rem;
        border-radius: 0;
        font-size: 0.9rem;
        min-height: 50px;
        display: block;
        text-align: left;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .nav-menu a::before {
        display: none;
    }
    
    .feature-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin: 3rem 0;
    }
    
    .section-title {
        margin-bottom: 3rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    footer {
        padding: 3rem 0 1.5rem;
        margin-top: 4rem;
    }
    
    footer .container {
        padding: 0 20px;
    }
    
    .footer-bottom {
        padding-top: 2rem;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .footer-bottom a {
        margin: 0 0.25rem;
        font-size: 0.9rem;
    }
    
    .privacy-popup {
        max-width: calc(100% - 40px);
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    header .container {
        padding: 0 15px;
    }
    
    footer .container {
        padding: 0 15px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    body {
        padding-top: 60px;
    }
    
    nav {
        flex-direction: row;
        gap: 0;
        padding: 1rem 0;
        min-height: 60px;
        justify-content: space-between;
        width: 100%;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .logo {
        font-size: 1.2rem;
        padding: 0.4rem 0.75rem;
        max-width: calc(100% - 60px);
        letter-spacing: -0.3px;
    }
    
    .nav-menu {
        top: 60px;
    }
    
    .nav-menu a {
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .hero {
        padding: 5rem 1.5rem;
        min-height: 350px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        margin-bottom: 2.5rem;
    }
    
    .products-grid {
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
        margin: 2rem auto;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .map-container {
        margin: 2rem 0;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .success-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .success-content {
        padding: 3rem 0;
    }
    
    .success-content h2 {
        font-size: 2rem;
    }
    
    .success-message {
        font-size: 1rem;
    }
    
    .success-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .success-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 14px;
        padding-top: 55px;
    }
    
    nav {
        min-height: 55px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.25rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    nav {
        padding: 0.75rem 0;
        min-height: 55px;
    }
    
    .logo {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
        max-width: calc(100% - 50px);
        letter-spacing: -0.2px;
        border-radius: 6px;
    }
    
    .menu-toggle span {
        width: 20px;
        height: 2px;
    }
    
    .nav-menu {
        top: 55px;
    }
    
    .nav-menu a {
        padding: 0.85rem 1rem;
        font-size: 0.8rem;
        min-height: 45px;
    }
    
    .hero {
        padding: 4rem 1rem;
        min-height: 300px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
        margin-bottom: 0;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .section-title {
        margin-bottom: 2rem;
        font-size: 1.3rem;
    }
    
    .products-grid,
    .testimonials-grid,
    .contact-info-grid {
        gap: 1rem;
    }
    
    .product-card-content,
    .testimonial-card {
        padding: 1rem;
    }
    
    .product-card img {
        height: 150px;
    }
    
    .feature-section {
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }
    
    .contact-info-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-info-card h3 {
        font-size: 1rem;
    }
    
    .map-container {
        margin: 1.5rem 0;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .success-content {
        padding: 2rem 0;
    }
    
    .success-content h2 {
        font-size: 1.5rem;
    }
    
    .success-message {
        font-size: 0.95rem;
    }
    
    .success-buttons {
        gap: 0.75rem;
    }
    
    footer {
        padding: 2rem 0 1rem;
        margin-top: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .footer-section {
        width: 100%;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
        word-wrap: break-word;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.8;
    }
    
    .footer-bottom a {
        margin: 0 0.2rem;
        font-size: 0.8rem;
        display: inline;
    }
    
    .privacy-popup {
        max-width: calc(100% - 30px);
        right: 15px;
        left: 15px;
        padding: 1rem;
    }
    
    .privacy-popup p {
        font-size: 0.85rem;
    }
    
    .privacy-popup-buttons .btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}
