* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00A7C7;
    --secondary-color: #008FAB;
    --accent-color: #00A7C7;
    --text-color: #2c3e50;
    --light-gray: #f5f6fa;
    --dark-gray: #34495e;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --background-color: #ffffff;
    --border-color: #e2e8f0;
    --top-bar-bg: #f8fafc;
    --top-bar-text: #64748b;
    --gradient-start: #00A7C7;
    --gradient-end: #008FAB;
    --whatsapp-color: #25D366;
    --whatsapp-hover: #128C7E;
    --nav-bg: rgba(255, 255, 255, 0.98);
    --nav-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #f8fafc;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

nav {
    padding: 15px 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-left a, .nav-right a:not(.whatsapp-button) {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-left a::after, .nav-right a:not(.whatsapp-button)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-left a:hover::after, .nav-right a:not(.whatsapp-button):hover::after,
.nav-left a.active::after, .nav-right a:not(.whatsapp-button).active::after {
    width: 100%;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.02);
}

.logo::before,
.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 10px;
    height: 10px;
}

.logo::before {
    left: -10px;
}

.logo::after {
    right: -10px;
    border-radius: 0 0 0 10px;
}

.whatsapp-button {
    background: #25d366;
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-decoration: none !important;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    background: #22c35e;
}

.whatsapp-button i {
    font-size: 1.1rem;
}

.whatsapp-button span {
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-left, .nav-right {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    /* Navigation - Only show logo on mobile */
    nav .container {
        display: flex;
        justify-content: center;
        padding: 0.5rem 0;
    }

    .nav-left, .nav-right, .mobile-menu-btn, .mobile-menu {
        display: none;
    }

    .logo {
        position: relative;
        left: auto;
        transform: none;
        margin: 0;
    }

    .logo img {
        height: 40px;
    }

    header {
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    }

    nav {
        padding: 0.5rem 0;
    }

    .whatsapp-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .whatsapp-button i {
        font-size: 1rem;
    }

    /* Hero Section Mobile Optimization */
    .hero {
        padding: 1rem 0;
        margin-top: 0;
    }

    .hero-content {
        padding: 0 0.5rem;
        max-width: 100%;
        overflow: hidden;
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
        padding: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .hero .subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        padding: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .cta-button {
        width: 100%;
        padding: 0.5rem;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .cta-button i {
        margin-right: 0.5rem;
    }

    .hero-features {
        margin-top: 1rem;
        gap: 0.5rem;
    }

    .hero .feature {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }

    .hero .feature i {
        font-size: 0.9rem;
        margin-right: 0.25rem;
    }

    /* Reduced Section Spacing for Mobile */
    .features {
        padding: 2rem 0;
    }

    .testimonials {
        padding: 2rem 0;
    }

    .contact {
        padding: 2rem 0;
    }

    .faq {
        padding: 2rem 0;
    }

    .footer-content {
        padding: 2rem 1rem;
    }

    /* Contact Form Mobile Optimization */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .contact-info {
        order: 2;
        margin-top: 1.5rem;
    }

    .form-group {
        margin-bottom: 0.75rem;
    }

    .info-item {
        margin-bottom: 1rem;
        padding: 0.75rem;
    }

    /* Features Grid */
    .features-grid {
        gap: 1rem;
        padding: 0 1rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    /* Testimonials */
    .testimonials-grid {
        gap: 1rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    /* FAQ */
    .faq-item {
        margin-bottom: 0.75rem;
    }

    .faq-question {
        padding: 0.75rem;
    }

    .faq-answer {
        padding: 0 0.75rem 0.75rem;
    }

    .cta-button.secondary {
        background: var(--primary-color);
        color: white;
        border: none;
    }

    .cta-button.secondary:hover {
        background: var(--hover-color);
        color: white;
    }

    .hero .cta-button.secondary {
        background: var(--primary-color);
        color: white;
        border: none;
    }

    .hero .cta-button.secondary:hover {
        background: var(--hover-color);
        color: white;
    }
}

main {
    padding: 0;
    max-width: none;
    margin: 0;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    padding-top: 6rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/hero_bg.png') no-repeat center center;
    background-size: cover;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.5s;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 1s;
}

.hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 1.5s;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 2s;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    background: var(--white);
    color: var(--primary-color);
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s;
    flex-wrap: wrap;
}

.hero .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero .feature:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero .feature i {
    color: var(--white);
    font-size: 1.1rem;
}

.hero .feature span {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 8rem 0 4rem;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero .subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 2rem;
    }

    .hero-features {
        gap: 1rem;
        padding: 0 1rem;
    }

    .hero .feature {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 7rem 0 3rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero .subtitle {
        font-size: 0.9rem;
    }

    .hero-buttons {
        max-width: 100%;
    }

    .hero-features {
        gap: 0.75rem;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.feature-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
    text-align: center;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    text-align: center;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.feature-link:hover {
    color: var(--hover-color);
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .feature-card {
        padding: 2rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .feature-list li {
        padding: 0.5rem 0;
    }
}

.detailed-services {
    margin: 6rem 0;
    text-align: center;
}

.detailed-services h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.service-item {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-item h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-item ul {
    list-style: none;
    padding: 0;
}

.service-item li {
    color: #64748b;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-item li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.testimonials {
    margin: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 167, 199, 0.1) 0%, rgba(0, 167, 199, 0.2) 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1.5rem;
}

.testimonial-card p {
    color: #64748b;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.author {
    display: flex;
    flex-direction: column;
}

.author strong {
    color: var(--text-color);
    font-size: 1.1rem;
}

.author span {
    color: #64748b;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .detailed-services h2,
    .testimonials h2 {
        font-size: 2rem;
    }

    .service-item,
    .testimonial-card {
        padding: 2rem;
    }
}

.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
}

.checkbox-group label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-group label a:hover {
    text-decoration: underline;
}

.form-note {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 1rem;
}

.submit-button {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.submit-button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.info-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(0, 207, 173, 0.1);
    padding: 1rem;
    border-radius: 12px;
}

.info-item h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--secondary-color);
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-info {
        gap: 2rem;
    }
    
    .info-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .info-item i {
        font-size: 1.5rem;
        padding: 0.75rem;
    }
}

.faq {
    margin: 6rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 167, 199, 0.1) 0%, rgba(0, 167, 199, 0.2) 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
}

.faq h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 2px;
    height: 16px;
    top: 4px;
    left: 11px;
    transform-origin: center;
}

.faq-icon::after {
    width: 16px;
    height: 2px;
    top: 11px;
    left: 4px;
}

.faq-icon.rotate::before {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 20px 25px;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-item.hover:not(.active) .faq-question {
    color: var(--primary-color);
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-content {
    position: relative;
    padding-bottom: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.02);
}

.footer-logo p {
    color: #a0aec0;
    line-height: 1.8;
    font-size: 1rem;
    margin-top: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-section a i {
    font-size: 0.8rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section a:hover i {
    opacity: 1;
}

.footer-contact {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #a0aec0;
}

.footer-contact p:last-child {
    margin-bottom: 0;
}

.footer-contact p i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-contact a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #a0aec0;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--white);
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-logo {
        max-width: 600px;
        margin: 0 auto;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin: 0 auto;
    }

    .footer-content,
    .footer-bottom-content {
        max-width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    footer {
        padding-top: 60px;
    }

    .footer-content {
        padding: 0 20px 30px;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section a {
        justify-content: center;
    }

    .footer-bottom-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }
}

/* About Us Section */
.about-us {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 2.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .about-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 4rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
}

/* Services Showcase */
.services-showcase {
    margin-top: 4rem;
}

.service-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.service-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Additional Services */
.additional-services {
    padding: 6rem 0;
    background: #fff;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.service-row.reverse {
    direction: rtl;
}

.service-row.reverse .service-content {
    direction: ltr;
}

.service-content {
    padding: 2rem;
}

.service-content h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    color: #64748b;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-row .service-image {
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-row .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-row .service-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .service-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-image-grid {
        grid-template-columns: 1fr;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-row.reverse {
        direction: ltr;
    }

    .service-content {
        padding: 1rem;
    }

    .service-content h2 {
        font-size: 2rem;
    }
}

/* Legal Pages Styling */
.legal-content {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.legal-content .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-section {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.legal-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section h3 {
    color: #374151;
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
}

.legal-section p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-section {
        padding: 1.5rem;
    }

    .legal-section h2 {
        font-size: 1.25rem;
    }

    .legal-section h3 {
        font-size: 1.1rem;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    max-width: 600px;
    width: 90%;
    z-index: 1000;
}

.cookie-content {
    text-align: center;
}

.cookie-text h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cookie-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.cookie-btn {
    padding: 12px 25px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-btn.accept {
    background: var(--secondary-color);
    color: var(--white);
}

.cookie-btn.settings {
    background: var(--light-gray);
    color: var(--text-color);
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1f2937;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.show {
    transform: translateY(0);
}

.mobile-menu a {
    display: block;
    padding: 1rem;
    color: #1f2937;
    text-decoration: none;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 500;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu .whatsapp-button {
    margin: 1rem 0;
    text-align: center;
}

.whatsapp-button a {
    text-decoration: none;
}

.wgs-link {
    color: hsl(345, 100%, 50%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.wgs-link:hover {
    color: hsl(345, 100%, 65%);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        z-index: 1001;
    }

    .nav-left, .nav-right {
        display: none;
    }

    .logo {
        position: relative;
        left: auto;
        transform: none;
        margin: 0 auto;
        text-align: center;
    }

    .logo img {
        height: 40px;
    }

    .mobile-menu {
        display: block;
    }

    /* Contact Form Mobile Optimization */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .contact-info {
        order: 2;
        margin-top: 2rem;
    }

    .contact-form {
        order: 1;
        width: 100%;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.75rem;
        font-size: 16px; /* Verhindert Zoom auf iOS */
        border: 1px solid #e5e7eb;
        border-radius: 6px;
        background-color: white;
    }

    .form-group textarea {
        height: 120px;
        resize: vertical;
    }

    .submit-button {
        width: 100%;
        padding: 0.75rem;
        font-size: 1rem;
        margin-top: 1rem;
    }

    .info-item {
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .info-item i {
        font-size: 1.25rem;
        margin-right: 1rem;
        color: var(--primary-color);
    }

    .info-item h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .info-item p {
        font-size: 0.9rem;
        color: #4b5563;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 2px;
    height: 16px;
    top: 4px;
    left: 11px;
    transform-origin: center;
}

.faq-icon::after {
    width: 16px;
    height: 2px;
    top: 11px;
    left: 4px;
}

.faq-icon.rotate::before {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 20px 25px;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-item.hover:not(.active) .faq-question {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 15px;
        font-size: 0.9rem;
    }
} 

.hidden {
    display: none;
}

.datenschutz {
    padding: 4rem 0;
    background: var(--white);
}

.datenschutz .container {
    max-width: 800px;
    margin: 0 auto;
}

.datenschutz h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.datenschutz h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin: 2rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.datenschutz h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin: 1.5rem 0 1rem;
}

.datenschutz h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 1.2rem 0 0.8rem;
}

.datenschutz p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.datenschutz ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.datenschutz li {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.datenschutz a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.datenschutz a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .datenschutz {
        padding: 3rem 0;
    }

    .datenschutz h1 {
        font-size: 2rem;
    }

    .datenschutz h2 {
        font-size: 1.5rem;
    }

    .datenschutz h3 {
        font-size: 1.2rem;
    }

    .datenschutz .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .datenschutz {
        padding: 2rem 0;
    }

    .datenschutz h1 {
        font-size: 1.8rem;
    }

    .datenschutz h2 {
        font-size: 1.3rem;
    }
}

.impressum {
    padding: 4rem 0;
    background: var(--white);
}

.impressum .container {
    max-width: 800px;
    margin: 0 auto;
}

.impressum h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.impressum h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin: 2rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.impressum p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.impressum a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.impressum a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .impressum {
        padding: 3rem 0;
    }

    .impressum h1 {
        font-size: 2rem;
    }

    .impressum h2 {
        font-size: 1.5rem;
    }

    .impressum .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .impressum {
        padding: 2rem 0;
    }

    .impressum h1 {
        font-size: 1.8rem;
    }

    .impressum h2 {
        font-size: 1.3rem;
    }
}

/* Formular Erfolgs- und Fehlermeldungen */
.success-message {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(0, 207, 173, 0.1);
    border-radius: 15px;
    margin: 20px 0;
}

.success-message i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.success-message p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.form-error {
    background-color: rgba(255, 76, 76, 0.1);
    border-left: 4px solid #ff4c4c;
    color: #ff4c4c;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.form-error i {
    margin-right: 10px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .success-message {
        padding: 30px 15px;
    }
    
    .success-message i {
        font-size: 2.5rem;
    }
    
    .success-message h3 {
        font-size: 1.5rem;
    }
}