/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Critical CSS for mobile performance */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    * {
        transform: translateZ(0);
        backface-visibility: hidden;
        perspective: 1000;
    }
}

/* Mobile-first approach */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
}

/* Lazy loading placeholder */
img.lazy {
    background: #f0f0f0;
    transition: opacity 0.3s;
}

img.lazy:not(.loaded) {
    opacity: 0;
}

img.lazy.loaded {
    opacity: 1;
}

/* Remove default list styles globally for feature lists */
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Stripe Checkout Styles */
.checkout-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.checkout-content {
    max-width: 1000px;
    margin: 0 auto;
}

.checkout-header {
    text-align: center;
    margin-bottom: 3rem;
}

.checkout-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.checkout-header p {
    font-size: 1.1rem;
    color: #64748b;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.package-info .package-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
}

.package-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.package-price {
    margin: 1.5rem 0;
    text-align: center;
}

.package-price .price {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
}

.package-price .period {
    font-size: 1rem;
    color: #64748b;
    margin-left: 0.5rem;
}

.package-features {
    margin: 2rem 0;
}

.package-features h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    color: #4b5563;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
    font-size: 0.9rem;
}

.package-features li i {
    color: #10b981;
    margin-right: 0.75rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.customer-form {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
}

.checkout-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2563eb;
}

.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 {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.btn-checkout {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.checkout-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.checkout-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.checkout-info i {
    color: #10b981;
}

.error-message {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

/* Success Page Styles */
.success-section, .cancel-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
    min-height: 100vh;
}

.success-content, .cancel-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 2rem;
}

.cancel-icon {
    font-size: 4rem;
    color: #dc2626;
    margin-bottom: 2rem;
}

.success-content h1, .cancel-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.success-message, .cancel-message {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.subscription-details {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.subscription-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.detail-item:last-child {
    border-bottom: none;
}

.status-active {
    color: #10b981;
    font-weight: 600;
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.step-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-info, .alternative-options, .reassurance-info {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h3, .alternative-options h3, .reassurance-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-method:hover {
    color: #1d4ed8;
}

.office-hours {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-outline {
    padding: 0.75rem 2rem;
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.option-item {
    text-align: center;
    padding: 1.5rem;
}

.option-icon {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.option-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.option-item p {
    color: #64748b;
    margin-bottom: 1rem;
}

.btn-secondary {
    padding: 0.5rem 1.5rem;
    background: #f1f5f9;
    color: #2563eb;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #e2e8f0;
    transform: translateY(-1px);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.benefit-item i {
    color: #10b981;
}

/* Responsive Design for Checkout */
@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .checkout-header h1 {
        font-size: 2rem;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 1rem;
    }
    
    .steps-grid, .options-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-logo a:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.nav-logo img {
    height: 40px;
    width: auto;
    max-width: 150px;
    display: block;
    object-fit: contain;
}

.logo-image {
    height: 80px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.nav-logo i {
    margin-right: 0.5rem;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2563eb;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.language-switcher a {
    padding: 0.25rem 0.5rem;
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.language-switcher a.active,
.language-switcher a:hover {
    background: #2563eb;
    color: white;
}

/* Desktop only language switcher */
.desktop-only {
    display: flex;
}

/* Mobile language switcher */
.mobile-language-switcher {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
    margin-top: 1rem;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.mobile-lang-btn:hover {
    background: #e5e7eb;
    color: #1f2937;
}

.mobile-lang-btn.active {
    background: #2563eb;
    color: white;
}

.flag-icon {
    font-size: 1.2rem;
}

/* Desktop Media Query */
@media (min-width: 769px) {
    .mobile-language-switcher {
        display: none !important;
    }
}

.quick-check-btn {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-check-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background-color: rgba(37, 99, 235, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #374151;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #2563eb;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #2563eb;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(226, 232, 240, 0.9) 100%), url('../img/image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid #2563eb;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #22c55e;
    font-weight: 500;
}

.feature i {
    font-size: 1.2rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.hero-stats {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 200px;
}

.stat-item {
    text-align: center;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    display: block;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    margin: 0.5rem 0;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 4px;
    transition: width 2s ease;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: white;
    position: relative;
    z-index: 2;
    margin-top: 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f5f9;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.service-icon.blue {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.service-icon.green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.service-icon.purple {
    background: linear-gradient(135deg, #9333ea, #a855f7);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.service-features i {
    color: #22c55e;
    font-size: 0.9rem;
}

/* Courses Section */
.courses {
    padding: 5rem 0;
    background: #f8fafc;
}

.courses-tagline {
    color: #3b82f6;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1rem 0 2rem 0;
    text-align: center;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.course-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.course-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.course-rating i {
    color: #fbbf24;
}

.course-rating span {
    color: #64748b;
    font-size: 0.9rem;
}

.course-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.btn-course {
    width: 100%;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
    margin-top: auto;
}

/* Course Content Lists */
.course-content ul {
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.course-content li {
    list-style: none;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
}

.course-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.btn-course:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Digital Services Section */
.digital-services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    z-index: 2;
}

.digital-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.digital-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.digital-header .subtitle-text {
    color: #2563eb;
    font-weight: 600;
}

.digital-header .section-description {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    margin-top: 1rem;
}

.digital-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
}

/* Für extra große Bildschirme - 4 Karten optimal verteilt */
@media (min-width: 1200px) {
    .digital-features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto 5rem;
    }
}

/* Für große Bildschirme - 4 Karten nebeneinander */
@media (min-width: 992px) and (max-width: 1199px) {
    .digital-features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .digital-feature-card {
        padding: 1.5rem;
        min-height: 280px;
    }
    
    .digital-feature-card h3 {
        font-size: 1.1rem;
    }
    
    .digital-feature-card p {
        font-size: 0.9rem;
    }
}

.digital-feature-card {
    background: white;
    padding: 1.8rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.digital-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon-container {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.digital-feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.digital-feature-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Clickable Digital Feature Card */
.clickable-card {
    text-decoration: none;
    color: inherit;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clickable-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.clickable-card .feature-icon-container {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.card-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.clickable-card:hover .card-action {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    transform: translateY(-2px);
}

.card-action i {
    font-size: 0.8rem;
}

/* Mobile touch improvements for Digital Services */
@media (max-width: 768px) {
    .digital-feature-card {
        min-height: 280px;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(37, 99, 235, 0.1);
    }
    
    .digital-feature-card:active {
        transform: translateY(-3px) scale(0.98);
    }
    
    .clickable-card:active {
        transform: translateY(-5px) scale(0.98);
    }
    
    .feature-icon-container {
        transition: transform 0.2s ease;
    }
    
    .digital-feature-card:active .feature-icon-container {
        transform: scale(0.95);
    }
    
    .card-action {
        min-height: 48px;
        font-size: 0.95rem;
        border-radius: 12px;
    }
    
    .card-action:active {
        transform: scale(0.98);
    }
}

.digital-benefits {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.benefits-header p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.benefit-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Mobile Responsive for Digital Services */
@media (max-width: 768px) {
    .digital-services {
        padding: 4rem 0;
    }
    
    .digital-header {
        margin-bottom: 3rem;
        padding: 0 1.5rem;
    }
    
    .digital-header .section-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .digital-header .section-description {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .digital-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .digital-feature-card {
        padding: 2rem 1.5rem;
        text-align: center;
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }
    
    .digital-feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }
    
    .feature-icon-container {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .digital-feature-card h3 {
        font-size: 1.3rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
    }
    
    .digital-feature-card p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .card-action {
        margin-top: 1.8rem;
        padding: 1rem 1.2rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .clickable-card:hover .card-action {
        transform: translateY(-3px);
    }
    
    .digital-benefits {
        padding: 2.5rem 2rem;
        margin: 0 1.5rem;
        border-radius: 24px;
    }
    
    .benefits-header h3 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .benefits-header p {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
        gap: 1.2rem;
        border-radius: 16px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .benefit-content h4 {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .benefit-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .digital-services {
        padding: 3rem 0;
    }
    
    .digital-header {
        padding: 0 1rem;
        margin-bottom: 2.5rem;
    }
    
    .digital-header .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .digital-header .section-description {
        font-size: 1rem;
    }
    
    .digital-features-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .digital-feature-card {
        padding: 1.8rem 1.2rem;
    }
    
    .feature-icon-container {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
    
    .digital-feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .digital-feature-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .card-action {
        margin-top: 1.5rem;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .digital-benefits {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        border-radius: 20px;
    }
    
    .benefits-header h3 {
        font-size: 1.6rem;
    }
    
    .benefits-header p {
        font-size: 1rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.2rem;
    }
    
    .benefit-icon {
        align-self: center;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .benefit-content h4 {
        font-size: 1rem;
    }
    
    .benefit-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .digital-header .section-title {
        font-size: 1.6rem;
    }
    
    .digital-features-grid {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
    }
    
    .digital-feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon-container {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }
    
    .digital-feature-card h3 {
        font-size: 1rem;
    }
    
    .digital-feature-card p {
        font-size: 0.85rem;
    }
    
    .digital-benefits {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
}
.coaching {
    padding: 5rem 0;
    background: white;
}

.coaching-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.coaching-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.coaching-text p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.coaching-features {
    margin-bottom: 2rem;
}

.coaching-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.coaching-feature i {
    color: #2563eb;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.coaching-feature h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.coaching-feature p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.coaching-image {
    position: relative;
    text-align: center;
}

.coaching-stats {
    display: inline-block;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-badge i {
    font-size: 2rem;
    color: #2563eb;
    background: #eff6ff;
    padding: 1rem;
    border-radius: 12px;
}

.stat-badge strong {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    display: block;
}

.stat-badge span {
    color: #64748b;
    font-weight: 500;
    display: block;
}

.stat-badge small {
    color: #22c55e;
    font-weight: 500;
    display: block;
    margin-top: 0.25rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
}

.contact .section-title {
    color: white;
}

.contact .section-subtitle {
    color: #cbd5e1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-item {
    text-align: center;
    padding: 2rem;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.contact-item a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: white;
}

.contact-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.footer-logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-logo a:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.footer-logo img {
    height: 45px;
    width: auto;
    max-width: 150px;
}

.footer-logo-image {
    height: 45px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
    margin-bottom: 1rem;
}

/* Developer Credit Styling */
.developer-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.credit-text {
    color: #64748b;
    font-size: 0.9rem;
}

.heart-icon {
    color: #ef4444;
    animation: heartbeat 2s ease-in-out infinite;
    font-size: 1rem;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.developer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
    position: relative;
    overflow: hidden;
}

.developer-link::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;
}

.developer-link:hover::before {
    left: 100%;
}

.developer-link:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.developer-logo {
    font-size: 1rem;
    animation: rotate 6s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.developer-name {
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Mobile responsiveness for developer credit */
@media (max-width: 768px) {
    .developer-credit {
        flex-direction: column;
        gap: 0.3rem;
        line-height: 1.6;
    }
    
    .credit-text {
        font-size: 0.8rem;
    }
    
    .developer-link {
        margin-top: 0.3rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.floating-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.floating-btn.whatsapp {
    background: #25d366;
    color: white;
}

.floating-btn.email {
    background: #2563eb;
    color: white;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: #64748b;
}

.close:hover {
    color: #1e293b;
}

.quick-check-form {
    margin-top: 1rem;
}

.quick-check-form input,
.quick-check-form select,
.quick-check-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.quick-check-form input:focus,
.quick-check-form select:focus,
.quick-check-form textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.quick-check-form textarea {
    height: 120px;
    resize: vertical;
}

/* Mobile Navigation Styles */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        background-color: #f3f4f6;
        color: #2563eb;
    }

    .hamburger {
        display: flex;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Navigation Mobile */
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo {
        font-size: 1.3rem;
    }
    
    .quick-check-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .language-switcher {
        gap: 0.25rem;
    }
    
    .language-switcher a {
        padding: 0.2rem 0.4rem;
        font-size: 0.8rem;
    }
    
    /* Hide desktop language switcher on mobile */
    .desktop-only {
        display: none !important;
    }
    
    /* Show mobile language switcher on mobile */
    .mobile-language-switcher {
        display: flex !important;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 5rem 0 3rem;
        min-height: 70vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        align-items: stretch;
        padding: 0 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .feature {
        font-size: 0.9rem;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        position: static;
        margin: 1rem auto 0;
        width: 90%;
        max-width: 250px;
    }
    
    /* Services Mobile */
    .services {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
        padding: 0 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin: 0 15px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .service-features {
        margin-top: 1rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    /* Courses Mobile */
    .courses {
        padding: 3rem 0;
    }
    
    .courses-tagline {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 0 15px;
    }
    
    .course-content {
        padding: 1.5rem;
    }
    
    .course-content h3 {
        font-size: 1.3rem;
    }
    
    .course-content p {
        font-size: 0.95rem;
    }
    
    .course-price {
        font-size: 1.8rem;
    }
    
    /* Coaching Mobile */
    .coaching {
        padding: 3rem 0;
    }
    
    .coaching-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .coaching-text h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .coaching-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .coaching-feature {
        margin-bottom: 1.5rem;
    }
    
    .coaching-feature h4 {
        font-size: 1.1rem;
    }
    
    .coaching-feature p {
        font-size: 0.95rem;
    }
    
    .coaching-stats {
        padding: 1.5rem;
        margin-top: 1rem;
    }
    
    .stat-badge {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .stat-badge i {
        font-size: 1.5rem;
        padding: 0.8rem;
    }
    
    /* Contact Mobile */
    .contact {
        padding: 3rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .contact-item {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .contact-item h3 {
        font-size: 1.3rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section {
        padding: 0 1rem;
    }
    
    /* Floating Buttons Mobile */
    .floating-buttons {
        right: 15px;
        bottom: 15px;
        gap: 0.8rem;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Modal Mobile */
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
        max-width: 400px;
    }
    
    .quick-check-form input,
    .quick-check-form select,
    .quick-check-form textarea {
        padding: 0.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Ultra Mobile Optimizations */
    .container {
        padding: 0 10px;
    }
    
    /* Navigation Ultra Mobile */
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-logo {
        font-size: 1.1rem;
    }
    
    .quick-check-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        display: none; /* Hide on very small screens */
    }
    
    .language-switcher a {
        padding: 0.15rem 0.3rem;
        font-size: 0.75rem;
    }
    
    /* Hero Ultra Mobile */
    .hero {
        padding: 4rem 0 2rem;
        min-height: 60vh;
    }
    
    .hero-container {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons {
        padding: 0 0.5rem;
        gap: 0.6rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-features {
        gap: 0.6rem;
    }
    
    .feature {
        font-size: 0.8rem;
    }
    
    .hero-stats {
        width: 95%;
        padding: 1rem;
    }
    
    /* Sections Ultra Mobile */
    .section-title {
        font-size: 1.6rem;
        padding: 0 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    /* Services Ultra Mobile */
    .services {
        padding: 2rem 0;
    }
    
    .services-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
        margin: 0 10px;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    .service-features li {
        font-size: 0.8rem;
    }
    
    /* Courses Ultra Mobile */
    .courses {
        padding: 2rem 0;
    }
    
    .courses-tagline {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .courses-grid {
        padding: 0 10px;
        gap: 1rem;
    }
    
    .course-content {
        padding: 1.2rem;
    }
    
    .course-content h3 {
        font-size: 1.1rem;
    }
    
    .course-content p {
        font-size: 0.85rem;
    }
    
    .course-price {
        font-size: 1.5rem;
    }
    
    /* Coaching Ultra Mobile */
    .coaching {
        padding: 2rem 0;
    }
    
    .coaching-content {
        padding: 0 10px;
    }
    
    .coaching-text h2 {
        font-size: 1.6rem;
    }
    
    .coaching-text p {
        font-size: 0.9rem;
    }
    
    .coaching-feature h4 {
        font-size: 1rem;
    }
    
    .coaching-feature p {
        font-size: 0.85rem;
    }
    
    .coaching-stats {
        padding: 1.2rem;
    }
    
    /* Contact Ultra Mobile */
    .contact {
        padding: 2rem 0;
    }
    
    .contact-item {
        padding: 1.2rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
    }
    
    /* Footer Ultra Mobile */
    .footer {
        padding: 1.5rem 0 0.5rem;
    }
    
    .footer-content {
        gap: 1rem;
    }
    
    .footer-section {
        padding: 0 0.5rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    /* Floating Buttons Ultra Mobile */
    .floating-buttons {
        right: 10px;
        bottom: 10px;
        gap: 0.6rem;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    /* Modal Ultra Mobile */
    .modal-content {
        margin: 5% auto;
        padding: 1rem;
        width: 98%;
        max-width: 350px;
    }
    
    .close {
        font-size: 1.5rem;
        right: 0.5rem;
        top: 0.5rem;
    }
    
    .quick-check-form input,
    .quick-check-form select,
    .quick-check-form textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    /* Pricing Ultra Mobile */
    .pricing {
        padding: 2rem 0;
    }
    
    .pricing-grid {
        margin: 0 10px;
        gap: 1rem;
    }
    
    .pricing-card {
        padding: 1rem;
    }
    
    .pricing-card h3 {
        font-size: 1.2rem;
    }
    
    .pricing-price .price {
        font-size: 1.8rem;
    }
    
    .pricing-features li {
        font-size: 0.8rem;
    }
    
    .btn-pricing {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .pricing-badge {
        top: 0.3rem;
        right: 0.3rem;
        padding: 0.3rem 0.6rem;
        font-size: 0.6rem;
    }
    
    /* FAQ Ultra Mobile */
    .faq {
        padding: 2rem 0;
    }
    
    .faq-question {
        padding: 0.8rem 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
        line-height: 1.2;
    }
    
    .faq-item.active .faq-answer {
        padding: 0.8rem 1rem;
    }
    
    .faq-cta {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .faq-cta p {
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.course-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Legal Pages Styles */
.legal-page {
    padding: 8rem 0 4rem;
    background: #f8fafc;
    min-height: 100vh;
}

.legal-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.legal-content h1 {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #2563eb;
}

.legal-content h2 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    padding-top: 1rem;
}

.legal-content h3 {
    color: #374151;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
}

.legal-content h4 {
    color: #374151;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem 0;
}

.legal-content p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: #4b5563;
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content a {
    color: #2563eb;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content strong {
    color: #1e293b;
    font-weight: 600;
}

.legal-content .source {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
    font-style: italic;
}

.legal-content .date-info {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
    text-align: right;
}

.legal-nav {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.legal-nav .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Responsive adjustments for legal pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem 2rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.3rem;
    }
    
    .legal-content ul {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding: 6rem 0 2rem;
    }
    
    .legal-content {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem 1rem;
    }
    
    .legal-content h1 {
        font-size: 1.8rem;
    }
}

/* Mobile-specific optimizations */
.mobile-device {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Improve touch targets */
.mobile-device a,
.mobile-device button,
.mobile-device .faq-question {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Prevent zoom on inputs in iOS */
.mobile-device input[type="text"],
.mobile-device input[type="email"],
.mobile-device input[type="tel"],
.mobile-device textarea,
.mobile-device select {
    font-size: 16px !important;
}

/* Use CSS custom properties for viewport height */
.hero {
    min-height: calc(var(--vh, 1vh) * 100);
}

/* Smooth scrolling improvements for mobile */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Better touch feedback */
.btn-primary:active,
.btn-secondary:active,
.btn-pricing:active,
.floating-btn:active {
    transform: scale(0.98);
}

/* Optimize image loading for mobile */
img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    z-index: 2;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
}

.pricing .section-title {
    color: white;
    margin-bottom: 1rem;
}

.pricing-tagline {
    color: #3b82f6;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.pricing .section-subtitle {
    color: #94a3b8;
    margin-bottom: 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Ensure all three cards fit nicely on larger screens */
@media (min-width: 1200px) {
    .pricing-grid {
        gap: 2.5rem;
    }
    
    .pricing-card {
        min-height: 550px;
    }
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.pricing-card.featured {
    border-color: #2563eb;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    background: linear-gradient(90deg, #f59e0b, #f97316);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pricing-icon i {
    font-size: 2rem;
    color: white;
}

.pricing-card h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-description {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 0;
}

.pricing-price {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-price .price {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    display: block;
    line-height: 1;
}

.pricing-price .period {
    color: #94a3b8;
    font-size: 1rem;
    margin-top: 0.5rem;
    display: block;
}

.pricing-features h4 {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    color: #e2e8f0;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
    font-size: 0.9rem;
}

.pricing-features li i {
    color: #10b981;
    margin-right: 0.75rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.pricing-cta {
    margin-top: auto;
    padding-top: 1.5rem;
    text-align: center;
}

.btn-pricing {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.9rem;
}

.btn-pricing:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-featured {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    border-color: #f59e0b;
}

.btn-featured:hover {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-note p {
    color: #94a3b8;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Lexware Office Consultation Styles */
.lexware-card {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.1));
    border-color: #f59e0b;
}

.lexware-card::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.lexware-card:hover {
    border-color: #f59e0b;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);
}

.lexware-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.lexware-btn {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-color: #f59e0b;
}

.lexware-btn:hover {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.lexware-info {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    text-align: center;
}

.lexware-info-content h3 {
    color: #fbbf24;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lexware-info-content p {
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Mobile Pricing Optimizations */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1; /* Show featured package first on mobile */
        border: 2px solid #f59e0b;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 3rem 0;
    }
    
    .pricing-grid {
        gap: 1.5rem;
        margin: 0 15px;
        max-width: 100%;
    }
    
    .pricing-card {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .pricing-card.featured {
        transform: none;
        margin: 0;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-3px);
    }
    
    .pricing-price .price {
        font-size: 2.5rem;
    }
    
    .pricing-badge {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .pricing-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .pricing-icon i {
        font-size: 1.5rem;
    }
    
    .pricing-card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .pricing-features li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .btn-pricing {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 25px;
    }
    
    .pricing-note {
        margin: 2rem 15px 0;
        padding: 1.2rem;
    }
    
    .pricing-note p {
        font-size: 0.85rem;
    }
}

/* FAQ Mobile Optimizations */
@media (max-width: 768px) {
    .faq {
        padding: 3rem 0;
    }
    
    .faq-container {
        margin: 2rem 15px 0;
    }
    
    .faq-question {
        padding: 1rem 1.2rem;
        min-height: 60px;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
        padding-right: 0.5rem;
        line-height: 1.3;
    }
    
    .faq-question i {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem 1.2rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .faq-cta {
        padding: 1.5rem;
        margin: 2rem 15px 0;
    }
    
    .faq-cta p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    z-index: 2;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
}

.faq-container {
    max-width: 1200px;
    margin: 4rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    color: #2563eb;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question {
    background: #f0f9ff;
    border-bottom-color: #e0e7ff;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background: #fafbfc;
}

.faq-item.active .faq-answer {
    max-height: 9999px;
    padding: 1.5rem 2rem;
}

.faq-answer p {
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-cta p {
    color: #4b5563;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Mobile FAQ styles */
@media (max-width: 768px) {
    .faq {
        padding: 4rem 0;
    }
    
    .faq-container {
        margin: 2rem auto 0;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 0.75rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.25rem 1.5rem;
        max-height: 9999px;
    }
    
    .faq-cta {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .faq-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem 1.25rem;
        max-height: 9999px;
    }
    
    .faq-cta {
        padding: 1.25rem;
    }
}
