/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    height: 100%;
}

/* ===== BARRIEREFREIHEIT / ACCESSIBILITY ===== */

/* Skip Link für Tastaturnavigation */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    z-index: 1000;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Screen Reader Only Content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Verbesserte Focus-Indikatoren */
*:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Service Cards Focus */
.service-card:focus {
    outline: 3px solid #007bff;
    outline-offset: 4px;
    transform: translateY(-2px);
    transition: all 0.2s ease;
}

/* Button Focus Verbesserungen */
.btn:focus,
.cta-btn:focus {
    outline: 3px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Link Focus */
a:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
    text-decoration: underline;
}

/* Verbesserte Kontraste für bessere Lesbarkeit */
@media (prefers-contrast: high) {
    .service-card {
        border: 2px solid #000;
        background: #fff;
    }
    
    .btn,
    .cta-btn {
        border: 2px solid #000;
    }
    
    .hero-subtitle {
        color: #0056b3;
    }
}

/* Reduzierte Bewegung für Nutzer mit Vestibular Disorders */
@media (prefers-reduced-motion: reduce) {
    .service-card:hover,
    .service-card:focus {
        transform: none;
    }
    
    .btn:hover,
    .cta-btn:hover,
    .btn-hero:hover {
        transform: none;
    }
    
    .hero-logo-image:hover {
        transform: none;
    }
}

/* Dunkler Modus Support */
@media (prefers-color-scheme: dark) {
    .skip-link {
        background: #fff;
        color: #000;
    }
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    line-height: 1.5;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* Navigation */
/* Hero Section */
.hero {
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile browsers */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    background-size: cover;
    background-position: center;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    max-height: 100vh;
    max-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    text-align: center;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.hero-logo-image {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.hero-logo-image:hover {
    transform: scale(1.05);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #007bff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.4);
}

/* Service Sections */
.service-section {
    padding: 4rem 0;
    background: white;
}

.service-section--alt {
    background: #f8f9fa;
}

.service-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.service-content--reverse {
    flex-direction: column-reverse;
}

.service-icon {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.service-text {
    max-width: 500px;
}

.service-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

/* Services Grid Layout */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card-icon {
    text-align: center;
    margin-bottom: 20px;
}

.service-card-icon svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
    text-align: center;
}

.service-card-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.trust-elements {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.trust-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
    border-left: 4px solid #007bff;
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
}

.contact-info a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #007bff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-bottom a:hover {
    color: #007bff;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-logo-image {
        height: 100px;
    }
    
    .service-content {
        flex-direction: row;
        text-align: left;
    }
    
    .service-content--reverse {
        flex-direction: row-reverse;
    }
    
    .service-icon {
        width: 250px;
        height: 250px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .service-card {
        padding: 40px;
    }
    
    .service-card-icon svg {
        width: 100px;
        height: 100px;
    }
    
    .trust-elements {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }
    
    .trust-item {
        flex-direction: row;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Contact Container - Tablet Layout */
    .contact-container {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
        align-items: start;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .contact-ctas {
        gap: 1.5rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.8rem;
    }
    
    .hero-subtitle {
        font-size: 2.2rem;
    }
    
    .hero-text {
        font-size: 1.3rem;
    }
    
    .hero-logo-image {
        height: 120px;
    }
    
    .service-section {
        padding: 5rem 0;
    }
    
    .service-icon {
        width: 300px;
        height: 300px;
    }
    
    .service-text h2 {
        font-size: 2.2rem;
    }
    
    .service-text p {
        font-size: 1.2rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-content p {
        font-size: 1.3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .service-card {
        padding: 35px;
    }
    
    .service-card-icon svg {
        width: 90px;
        height: 90px;
    }
    
    .service-card-content h3 {
        font-size: 1.4rem;
    }
    
    /* Contact Container - Desktop Layout */
    .contact-container {
        grid-template-columns: 1.5fr 1fr;
        gap: 4rem;
    }
    
    .map-container iframe {
        height: 400px;
    }
    
    .cta-btn {
        font-size: 1.2rem;
        padding: 1.25rem 2rem;
        min-height: 70px;
    }
    
    .cta-icon {
        width: 28px;
        height: 28px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 0;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #2c3e50;
    color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    line-height: 1.6;
}

/* Mobile-optimierte Styles für Formular */
@media (max-width: 767px) {
    .contact-form {
        margin: 1.5rem auto;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 16px; /* Verhindert iOS Zoom */
    }

    .form-group textarea {
        min-height: 100px;
    }

    .checkbox-group {
        margin: 1rem 0;
    }

    .checkbox-label {
        font-size: 0.85rem;
        padding-right: 0.5rem;
        line-height: 1.4;
        align-items: flex-start;
    }

    .checkmark {
        margin-top: 0.1rem;
        flex-shrink: 0;
    }

    .checkbox-text {
        flex: 1;
        word-wrap: break-word;
        hyphens: auto;
    }

    /* Verbesserte Lesbarkeit für Placeholder-Text */
    .form-group input::placeholder,
    .form-group textarea::placeholder {
        opacity: 0.7;
        font-size: 0.9rem;
    }
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

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

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #007bff;
    border-color: #007bff;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-label a {
    color: #007bff;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #0056b3;
}

.form-success,
.form-error {
    display: none;
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.form-success {
    background: rgba(40, 167, 69, 0.2);
    border: 2px solid rgba(40, 167, 69, 0.4);
}

.form-error {
    background: rgba(220, 53, 69, 0.2);
    border: 2px solid rgba(220, 53, 69, 0.4);
}

.success-icon,
.error-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-icon {
    color: #28a745;
}

.error-icon {
    color: #dc3545;
}

.form-success h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.form-success p,
.form-error p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Form validation styles */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.form-group input:valid,
.form-group textarea:valid {
    border-color: rgba(40, 167, 69, 0.6);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border: 2px solid #fff;
    }
    
    .highlight {
        background: #000;
        color: #fff;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        border-color: #fff;
        background: #000;
    }
}

/* Tablet styles for form */
@media (min-width: 768px) {
    .form-row {
        flex-direction: row;
    }
    
    .form-group {
        flex: 1;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding-top: 100px;
    padding-bottom: 2rem;
    background: #f8f9fa;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 3px solid #007bff;
    padding-bottom: 1rem;
}

.legal-intro {
    font-size: 1.1rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    color: #007bff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 4px solid #007bff;
}

.legal-section h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.company-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.company-info p {
    margin: 0;
    font-size: 1.1rem;
}

.legal-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.legal-content a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Button overrides in legal content */
.legal-content .btn-primary {
    color: white !important;
    text-decoration: none !important;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.legal-content .btn-primary:hover {
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.4);
}

/* Mobile responsive for legal pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
        border-radius: 8px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
    
    .company-info {
        padding: 1rem;
    }
}

/* Contact Container & Google Maps */
.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    background: white;
    min-height: 300px;
}

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

/* Contact CTA Buttons */
.contact-ctas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 60px;
}

.cta-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.cta-phone {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
}

.cta-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #20c997, #28a745);
}

.cta-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.cta-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128c7e, #25d366);
}

.cta-email {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3);
}

.cta-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.4);
    background: linear-gradient(135deg, #0056b3, #007bff);
}

/* Mobile optimizations for contact CTAs */
@media (max-width: 767px) {
    .contact-container {
        gap: 1.5rem;
        margin: 0;
        padding: 0;
    }
    
    .map-container {
        border-radius: 8px;
        margin: 0;
        min-height: 250px;
        background: transparent;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
    
    .map-container iframe {
        height: 250px;
        border-radius: 8px;
        vertical-align: top;
    }
    
    .contact-ctas {
        gap: 1rem;
    }
    
    .cta-btn {
        padding: 1rem 1.25rem;
        font-size: 1rem;
        min-height: 56px;
        border-radius: 10px;
        gap: 0.5rem;
    }
    
    .cta-icon {
        width: 20px;
        height: 20px;
    }
    
    .cta-btn span {
        font-weight: 600;
    }
} 