* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-beige: #F5F1E8;
    --warm-beige: #E8DCC6;
    --dark-brown: #8B4513;
    --rich-brown: #A0522D;
    --deep-brown: #654321;
    --accent-gold: #D4A574;
    --text-dark: #2C1810;
    --text-light: #F5F1E8;
    
    /* Breakpoints */
    --bp-lg: 1024px;
    --bp-md: 768px;
    --bp-sm: 480px;
}

html, body { height: 100%; }

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--primary-beige);
}

/* Navbar Styles - MOBILE NAVIGATION WIE INDEX */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 241, 232, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-100%);
    animation: slideDownFadeIn 0.8s ease forwards;
}

@keyframes slideDownFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    font-weight: bold;
    color: var(--deep-brown);
    text-decoration: none;
    position: relative;
    opacity: 0;
    animation: fadeInLeft 0.6s ease 0.3s forwards;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-image {
    width: 100px;
    height: 45px;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.2);
}

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.logo-text {
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--rich-brown));
    transition: width 0.3s ease;
}

.logo:hover .logo-text::after {
    width: 100%;
}

/* HAMBURGER BUTTON - EXAKT WIE INDEX */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    position: relative;
}

.nav-toggle .bar {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--text-dark);
    transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}

.nav-toggle .bar:nth-child(1) { top: 14px; }
.nav-toggle .bar:nth-child(2) { top: 21px; }
.nav-toggle .bar:nth-child(3) { top: 28px; }

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: rotate(45deg);
    top: 21px;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform: rotate(-45deg);
    top: 21px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links li {
    opacity: 0;
    transform: translateY(-20px);
}

.nav-links li:nth-child(1) { animation: fadeInDown 0.5s ease 0.4s forwards; }
.nav-links li:nth-child(2) { animation: fadeInDown 0.5s ease 0.5s forwards; }
.nav-links li:nth-child(3) { animation: fadeInDown 0.5s ease 0.6s forwards; }
.nav-links li:nth-child(4) { animation: fadeInDown 0.5s ease 0.7s forwards; }
.nav-links li:nth-child(5) { animation: fadeInDown 0.5s ease 0.8s forwards; }

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: linear-gradient(135deg, var(--warm-beige), var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
}

.nav-links a.active {
    background: linear-gradient(135deg, var(--warm-beige), var(--accent-gold));
    color: var(--deep-brown);
    font-weight: 600;
}

.contact-btn {
    background: linear-gradient(135deg, var(--rich-brown), var(--deep-brown)) !important;
    color: var(--text-light) !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    transition: all 0.3s ease !important;
}

.contact-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4) !important;
    background: linear-gradient(135deg, var(--deep-brown), var(--rich-brown)) !important;
}

.contact-btn.active {
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-beige)) !important;
    color: var(--deep-brown) !important;
}

/* MOBILE MENU BEHAVIOR - EXAKT WIE INDEX */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        right: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
        background: rgba(245, 241, 232, 0.98);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
        border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    }
    
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-links li {
        border-top: 1px solid rgba(139, 69, 19, 0.08);
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 1.25rem;
    }
    
    body.no-scroll {
        overflow: hidden;
    }
    
    .nav-container {
        padding: 0.8rem 1.25rem;
    }
}

/* Header Section */
.contact-header {
    height: 100vh;
    background: var(--deep-brown);
    padding: 10rem 2rem 6rem;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(160, 82, 45, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(245, 241, 232, 0.05) 0%, transparent 60%);
    z-index: 1;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.header-content {
    text-align: center;
    color: var(--text-light);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.5s forwards;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-beige));
    color: var(--deep-brown);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: badgeShimmer 3s infinite;
}

@keyframes badgeShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.header-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.highlight-item:nth-child(1) { animation-delay: 1s; }
.highlight-item:nth-child(2) { animation-delay: 1.2s; }

.highlight-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.highlight-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.highlight-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--text-light);
}

.highlight-item span {
    font-weight: 500;
    font-size: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Form Section */
.contact-form-section {
    background: #ffffff;
    padding: 8rem 2rem 6rem;
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, 
        var(--primary-beige) 0%,
        #ffffff 100%
    );
    z-index: 1;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.form-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.form-header {
    text-align: center;
    margin-bottom: 4rem;
}

.form-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
}

.form-header p {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.9;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(245, 241, 232, 0.3);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(139, 69, 19, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
    transform: translateY(-2px);
}

.form-group.focused label {
    color: var(--accent-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(139, 69, 19, 0.6);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(4px);
}

.checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid var(--text-light);
    border-width: 0 3px 3px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, var(--accent-gold), var(--rich-brown));
    border-color: var(--rich-brown);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    transform: rotate(45deg) scale(1);
}

.checkbox-label a {
    color: var(--rich-brown);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    color: var(--deep-brown);
    text-decoration: underline;
}

.form-actions {
    text-align: center;
    margin-top: 3rem;
}

.submit-button {
    background: linear-gradient(135deg, var(--rich-brown), var(--deep-brown));
    color: var(--text-light);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.4);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.button-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--text-light);
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
    margin-top: 1rem;
}

/* Success Message */
.success-message {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.1);
    border: 2px solid var(--accent-gold);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), var(--rich-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: successPulse 2s ease infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.success-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--text-light);
}

.success-message h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.success-message p {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.9;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    background: var(--deep-brown);
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, 
        #ffffff 0%,
        var(--deep-brown) 100%
    );
    z-index: 1;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.map-header {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.map-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.map-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    margin-bottom: 4rem;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.location-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.location-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), var(--rich-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.location-icon:hover {
    transform: scale(1.1);
}

.location-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--text-light);
}

.location-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
}

.location-details p {
    color: var(--text-dark);
    line-height: 1.5;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #000000;
    color: var(--text-light);
    padding: 3rem 2rem 2rem;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-beige));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    font-size: 1rem;
    opacity: 0.8;
    color: var(--text-light);
}

.footer-info {
    flex: 2;
    text-align: right;
}

.footer-copyright {
    margin-bottom: 1rem;
    opacity: 0.9;
    font-size: 0.95rem;
    color: var(--text-light);
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link:hover {
    opacity: 1;
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.instagram-link {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
    transform: translateY(-3px);
    color: var(--text-light);
}

.instagram-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Error Message Styles */
.error-message {
    background: rgba(220, 53, 69, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.15);
    border: 2px solid rgba(220, 53, 69, 0.3);
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.error-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.error-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.error-content {
    flex: 1;
}

.error-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #dc3545;
    margin-bottom: 0.5rem;
}

.error-content p {
    font-size: 1rem;
    color: #721c24;
    line-height: 1.6;
    margin: 0;
}

/* Loading state für submit button */
.submit-button:disabled .button-text {
    opacity: 0.7;
}

.submit-button:disabled .button-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== RESPONSIVE DESIGN - ERWEITERT FÜR MOBILE ===== */

/* Large to medium */
@media (max-width: 968px) {
    .contact-highlights {
        gap: 2rem;
    }

    .form-group-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .location-info {
        grid-template-columns: 1fr;
    }

    .location-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .logo-image {
        width: 84px;
        height: 38px;
    }
    
    .contact-header {
        padding: 8rem 1rem 4rem;
        margin-top: 70px;
    }

    .contact-form-section {
        padding: 6rem 1rem 4rem;
    }

    .contact-highlights {
        flex-direction: column;
        gap: 1.5rem;
    }

    .highlight-item {
        justify-content: center;
    }

    .map-section {
        padding: 4rem 1rem;
    }

    .map-wrapper iframe {
        height: 300px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .location-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-info {
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .instagram-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .instagram-icon {
        width: 16px;
        height: 16px;
    }
}

/* Phones */
@media (max-width: 480px) {
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .submit-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .checkbox-label {
        font-size: 0.85rem;
    }
}