 /* Основные цвета */
        :root {
            --primary-50: #f0f9ff;
            --primary-100: #e0f2fe;
            --primary-200: #bae6fd;
            --primary-300: #7dd3fc;
            --primary-400: #38bdf8;
            --primary-500: #0ea5e9;
            --primary-600: #0284c7;
            --primary-700: #0369a1;
            --primary-800: #075985;
            --primary-900: #0c4a6e;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --white: #ffffff;
            --black: #000000;
        }
        
        /* Базовые стили */
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.5;
            color: var(--gray-800);
            background-color: var(--white);
            -webkit-font-smoothing: antialiased;
        }

.card-hover {
            transition: all 0.3s ease;
            transform: translateY(0);
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        .pricing-toggle {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 32px;
        }
        .pricing-toggle input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 34px;
        }
        .slider:before {
            position: absolute;
            content: "";
            height: 24px;
            width: 24px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        input:checked + .slider {
            background-color: #0284c7;
        }
        input:checked + .slider:before {
            transform: translateX(28px);
        }
        .nav-link {
            position: relative;
        }
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #0284c7;
            transition: width 0.3s ease;
        }
        .nav-link:hover:after {
            width: 100%;
        }
        .mobile-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }
        .mobile-menu.open {
            max-height: 500px;
        }
      
      /* Header styles */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: #fff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-flex {
    display: flex;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.375rem;
    background-color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo-text {
    margin-left: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0c4a6e;
}

/* Navigation styles */
.header-nav-desktop {
    display: none;
}

@media (min-width: 768px) {
    .header-nav-desktop {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.header-nav-list {
    display: flex;
    gap: 2rem;
}

.header-nav-link {
    position: relative;
    font-weight: 500;
}

.header-nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #0284c7;
    transition: width 0.3s ease;
}

.header-nav-link:hover:after {
    width: 100%;
}

.header-auth-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-login-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    color: #0284c7;
    transition: background-color 0.3s ease;
}

.header-login-btn:hover {
    background-color: #f0f9ff;
}

.header-dashboard-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    background-color: #0284c7;
    color: #fff;
    transition: background-color 0.3s ease;
}

.header-dashboard-btn:hover {
    background-color: #0369a1;
}

/* Mobile menu styles */
.header-mobile-menu-btn {
    color: #4b5563;
    transition: color 0.3s ease;
}

.header-mobile-menu-btn:hover {
    color: #0284c7;
}

.header-mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.header-mobile-menu.open {
    max-height: 500px;
}

.header-mobile-menu-content {
    padding: 0.5rem 0.5rem 1rem;
}

.header-mobile-menu-link {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.header-mobile-menu-link:hover {
    background-color: #f0f9ff;
}

.header-mobile-auth-section {
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}
/* End Header Section Styles */
      
      /* Hero Section Styles */
        .hero {
            padding: 4rem 0;
            background: linear-gradient(to right, #f0f9ff, #e0f2fe);
        }
        
        @media (min-width: 768px) {
            .hero {
                padding: 6rem 0;
            }
        }
        
        .hero-container {
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        .hero-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        @media (min-width: 768px) {
            .hero-content {
                flex-direction: row;
            }
        }
        
        .hero-text {
            width: 100%;
            margin-bottom: 3rem;
        }
        
        @media (min-width: 768px) {
            .hero-text {
                width: 50%;
                margin-bottom: 0;
                padding-right: 2rem;
            }
        }
        
        .hero-title {
            font-size: 2.25rem;
            font-weight: 700;
            line-height: 1.25;
            color: #0c4a6e;
            margin-bottom: 1.5rem;
        }
        
        @media (min-width: 768px) {
            .hero-title {
                font-size: 3rem;
            }
        }
        
        .hero-description {
            font-size: 1.125rem;
            color: #374151;
            margin-bottom: 2rem;
        }
        
        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        @media (min-width: 640px) {
            .hero-buttons {
                flex-direction: row;
                gap: 1rem;
            }
        }
        
        .primary-button {
            padding: 0.75rem 1.5rem;
            background-color: #0284c7;
            color: white;
            font-weight: 500;
            border-radius: 0.375rem;
            text-align: center;
            transition: background-color 0.3s ease;
        }
        
        .primary-button:hover {
            background-color: #0369a1;
        }
        
        .secondary-button {
            padding: 0.75rem 1.5rem;
            border: 1px solid #0284c7;
            color: #0284c7;
            font-weight: 500;
            border-radius: 0.375rem;
            text-align: center;
            transition: background-color 0.3s ease;
        }
        
        .secondary-button:hover {
            background-color: #f0f9ff;
        }
        
        .hero-image {
            width: 100%;
            display: flex;
            justify-content: center;
        }
        
        @media (min-width: 768px) {
            .hero-image {
                width: 50%;
            }
        }
        
        .telegram-demo {
            position: relative;
            max-width: 28rem;
        }
        
        .telegram-demo-bg-1 {
            position: absolute;
            top: -1.5rem;
            left: -1.5rem;
            width: 8rem;
            height: 8rem;
            background-color: #bae6fd;
            border-radius: 50%;
            opacity: 0.5;
        }
        
        .telegram-demo-bg-2 {
            position: absolute;
            bottom: -1.5rem;
            right: -1.5rem;
            width: 8rem;
            height: 8rem;
            background-color: #7dd3fc;
            border-radius: 50%;
            opacity: 0.5;
        }
        
        .telegram-window {
            position: relative;
            background-color: white;
            padding: 1.5rem;
            border-radius: 0.75rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            border: 1px solid #f3f4f6;
        }
        
        .telegram-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .telegram-avatar {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            background-color: #e0f2fe;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .telegram-header-text {
            margin-left: 0.75rem;
        }
        
        .telegram-header-title {
            font-weight: 500;
        }
        
        .telegram-header-subtitle {
            font-size: 0.75rem;
            color: #6b7280;
        }
        
        .telegram-chat {
            background-color: #f9fafb;
            padding: 1rem;
            border-radius: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .telegram-message {
            display: flex;
            margin-bottom: 0.75rem;
        }
        
        .telegram-message-avatar {
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            background-color: #e5e7eb;
        }
        
        .telegram-message-content {
            margin-left: 0.75rem;
            width: 75%;
            background-color: #e5e7eb;
            height: 0.5rem;
            border-radius: 0.25rem;
            margin-top: 0.5rem;
        }
        
        .telegram-response {
            display: flex;
        }
        
        .telegram-response-avatar {
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            background-color: #e0f2fe;
        }
        
        .telegram-response-content {
            margin-left: 0.75rem;
        }
        
        .telegram-response-bubble {
            background-color: #e0f2fe;
            padding: 0.5rem;
            border-radius: 0.5rem;
        }
        
        .telegram-response-text {
            font-size: 0.875rem;
        }
        
        .telegram-response-time {
            font-size: 0.75rem;
            color: #6b7280;
            margin-top: 0.25rem;
        }
        
        .telegram-input {
            display: flex;
            align-items: center;
        }
        
        .telegram-input-field {
            flex: 1;
            padding: 0.5rem 1rem;
            border: 1px solid #d1d5db;
            border-radius: 0.375rem 0 0 0.375rem;
            outline: none;
        }
        
        .telegram-input-field:focus {
            border-color: #0284c7;
            box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.5);
        }
        
        .telegram-send-button {
            padding: 0.5rem 1rem;
            background-color: #0284c7;
            color: white;
            border-radius: 0 0.375rem 0.375rem 0;
            transition: background-color 0.3s ease;
        }
        
        .telegram-send-button:hover {
            background-color: #0369a1;
        }
      /* End Hero Section Styles */
      
      /* Stats Section Styles */
        .stats {
            padding: 3rem 0;
            background-color: #fff;
        }
        
        .stats-container {
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            text-align: center;
        }
        
        @media (min-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .stat-item {
            padding: 1rem;
        }
        
        .stat-number {
            font-size: 1.875rem;
            font-weight: 700;
            color: #0284c7;
            margin-bottom: 0.5rem;
        }
        
        @media (min-width: 768px) {
            .stat-number {
                font-size: 2.25rem;
            }
        }
        
        .stat-label {
            color: #4b5563;
        }
      /* End Stats Section Styles */
      
      /* Templates Section Styles */
        .templates {
            padding: 4rem 0;
            background-color: #f9fafb;
        }
        
        .templates-container {
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        .templates-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .templates-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: #0c4a6e;
            margin-bottom: 1rem;
        }
        
        @media (min-width: 768px) {
            .templates-title {
                font-size: 2.5rem;
            }
        }
        
        .templates-subtitle {
            font-size: 1.125rem;
            color: #4b5563;
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
        }
        
        .templates-controls {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }
        
        @media (min-width: 768px) {
            .templates-controls {
                flex-direction: row;
            }
        }
        
        .templates-filters {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        @media (min-width: 768px) {
            .templates-filters {
                margin-bottom: 0;
            }
        }
        
        .filter-btn {
            padding: 0.5rem 1rem;
            border-radius: 0.375rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .filter-btn.active {
            background-color: #0284c7;
            color: white;
        }
        
        .filter-btn.inactive {
            border: 1px solid #d1d5db;
            color: #4b5563;
        }
        
        .filter-btn.inactive:hover {
            background-color: #f3f4f6;
        }
        
        .templates-search {
            position: relative;
            width: 100%;
            max-width: 24rem;
        }
        
        .search-input {
            width: 100%;
            padding: 0.5rem 1rem 0.5rem 2.5rem;
            border: 1px solid #d1d5db;
            border-radius: 0.375rem;
            outline: none;
        }
        
        .search-input:focus {
            border-color: #0284c7;
            box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.5);
        }
        
        .search-icon {
            position: absolute;
            left: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
        }
        
        .templates-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
        }
        
        @media (min-width: 640px) {
            .templates-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .templates-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .template-card {
            background-color: white;
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }
        
        .template-card:hover {
            transform: translateY(-0.25rem);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        
        .template-image-container {
            position: relative;
            height: 12rem;
        }
        
        .template-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .template-badge {
            position: absolute;
            top: 0.5rem;
            right: 0.5rem;
            padding: 0.25rem 0.5rem;
            border-radius: 0.25rem;
            font-size: 0.75rem;
            font-weight: 700;
            color: white;
        }
        
        .badge-hit {
            background-color: #eab308;
        }
        
        .badge-new {
            background-color: #ef4444;
        }
        
        .template-content {
            padding: 1.5rem;
        }
        
        .template-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.5rem;
        }
        
        .template-title {
            font-size: 1.25rem;
            font-weight: 700;
        }
        
        .template-category {
            font-size: 0.75rem;
            font-weight: 500;
            padding: 0.125rem 0.5rem;
            border-radius: 0.25rem;
        }
        
        .category-sales {
            background-color: #e0f2fe;
            color: #0369a1;
        }
        
        .category-free {
            background-color: #dcfce7;
            color: #166534;
        }
        
        .category-card {
            background-color: #f3e8ff;
            color: #7e22ce;
        }
        
        .template-description {
            color: #4b5563;
            margin-bottom: 1rem;
        }
        
        .template-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .template-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0284c7;
        }
        
        .template-old-price {
            font-size: 0.875rem;
            color: #9ca3af;
            text-decoration: line-through;
            margin-left: 0.25rem;
        }
        
        .template-link {
            color: #0284c7;
            font-weight: 500;
            display: flex;
            align-items: center;
            transition: color 0.3s ease;
        }
        
        .template-link:hover {
            color: #075985;
        }
        
        .template-link-icon {
            margin-left: 0.25rem;
            font-size: 0.875rem;
        }
        
        .templates-more {
            text-align: center;
            margin-top: 3rem;
        }
        
        .more-btn {
            display: inline-flex;
            align-items: center;
            padding: 0.75rem 1.5rem;
            border: 1px solid #0284c7;
            color: #0284c7;
            font-weight: 500;
            border-radius: 0.375rem;
            transition: background-color 0.3s ease;
        }
        
        .more-btn:hover {
            background-color: #f0f9ff;
        }
        
        .more-btn-icon {
            margin-left: 0.5rem;
        }

/* More Templates Section */
.more-templates-section {
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    margin-top: 2rem;
}

.more-templates-section.hidden {
    display: none;
}

.templates-grid-additional {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .templates-grid-additional {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .templates-grid-additional {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Анимация для плавного появления */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.more-templates-section:not(.hidden) {
    animation: fadeIn 0.3s ease-out;
}

       /* End Templates Section Styles */
      
      /* Services Section Styles */
        .services {
            padding: 4rem 0;
            background-color: #fff;
        }
        
        .services-container {
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        .services-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .services-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: #0c4a6e;
            margin-bottom: 1rem;
        }
        
        @media (min-width: 768px) {
            .services-title {
                font-size: 2.5rem;
            }
        }
        
        .services-subtitle {
            font-size: 1.125rem;
            color: #4b5563;
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
        }
        
        .services-toggle {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
        }
        
        .toggle-container {
            display: flex;
            align-items: center;
        }
        
        .toggle-label {
            font-weight: 500;
            margin: 0 0.75rem;
        }
        
        .services-plans {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        @media (min-width: 768px) {
            .services-plans {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .plan-card {
            background-color: #fff;
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            border: 1px solid #e5e7eb;
            transition: all 0.3s ease;
        }
        
        .plan-card:hover {
            transform: translateY(-0.25rem);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        
        .plan-card.popular {
            border: 2px solid #0284c7;
            transform: scale(1.03);
            z-index: 10;
        }
        
        .plan-badge {
            background-color: #0284c7;
            color: white;
            text-align: center;
            padding: 0.5rem 0;
            font-weight: 500;
        }
        
        .plan-header {
            padding: 1.5rem;
            border-bottom: 1px solid #e5e7eb;
            text-align: center;
        }
        
        .plan-name {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .plan-description {
            color: #4b5563;
            margin-bottom: 1.5rem;
        }
        
        .plan-price {
            font-size: 2.25rem;
            font-weight: 700;
            color: #0284c7;
            margin-bottom: 0.25rem;
        }
        
        .plan-period {
            color: #6b7280;
        }
        
        .plan-button {
            display: block;
            width: 100%;
            padding: 0.75rem 1rem;
            background-color: #0284c7;
            color: white;
            font-weight: 500;
            text-align: center;
            border-radius: 0.375rem;
            margin-top: 1rem;
            transition: background-color 0.3s ease;
        }
        
        .plan-button:hover {
            background-color: #0369a1;
        }
        
        .plan-features {
            padding: 1.5rem;
        }
        
        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
        }
        
        .feature-icon {
            margin-right: 0.5rem;
            color: #10b981;
        }
        
        .feature-icon.disabled {
            color: #9ca3af;
        }
        
        .feature-text {
            color: #1f2937;
        }
        
        .feature-text.disabled {
            color: #9ca3af;
        }
        
        /* Toggle switch styles */
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 3.75rem;
            height: 2rem;
        }
        
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .toggle-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #d1d5db;
            transition: .4s;
            border-radius: 2rem;
        }
        
        .toggle-slider:before {
            position: absolute;
            content: "";
            height: 1.5rem;
            width: 1.5rem;
            left: 0.25rem;
            bottom: 0.25rem;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .toggle-slider {
            background-color: #0284c7;
        }
        
        input:checked + .toggle-slider:before {
            transform: translateX(1.75rem);
        }

        /* Стили для переключателя и тарифов */
.hidden {
    display: none !important;
}

.services-plans {
    transition: opacity 0.3s ease;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 0 10px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #0284c7;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.toggle-label {
    font-weight: 500;
    color: #4b5563;
}
      /* End Services Section Styles */
      
           /* Testimonials Section Styles */
        .testimonials {
            padding: 4rem 0;
            background-color: #f9fafb;
        }
        
        .testimonials-container {
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        .testimonials-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .testimonials-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: #0c4a6e;
            margin-bottom: 1rem;
        }
        
        @media (min-width: 768px) {
            .testimonials-title {
                font-size: 2.5rem;
            }
        }
        
        .testimonials-subtitle {
            font-size: 1.125rem;
            color: #4b5563;
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        @media (min-width: 768px) {
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .testimonial-card {
            background-color: white;
            padding: 1.5rem;
            border-radius: 0.75rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .author-avatar {
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            background-color: #e0f2fe;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #0284c7;
            flex-shrink: 0;
        }
        
        .author-info {
            margin-left: 1rem;
        }
        
        .author-name {
            font-weight: 700;
        }
        
        .author-position {
            font-size: 0.875rem;
            color: #6b7280;
        }
        
        .testimonial-text {
            color: #374151;
            margin-bottom: 1rem;
            font-style: italic;
            line-height: 1.6;
        }
        
        .testimonial-rating {
            display: flex;
            color: #f59e0b;
        }
        
        .star-icon {
            margin-right: 0.25rem;
        }
      /* End Testimonials Section Styles */
      
      /* Contact Section Styles */
        .contact {
            padding: 4rem 0;
            background-color: #fff;
        }
        
        .contact-container {
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        .contact-wrapper {
            max-width: 72rem;
            margin-left: auto;
            margin-right: auto;
        }
        
        .contact-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .contact-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: #0c4a6e;
            margin-bottom: 1rem;
        }
        
        @media (min-width: 768px) {
            .contact-title {
                font-size: 2.5rem;
            }
        }
        
        .contact-subtitle {
            font-size: 1.125rem;
            color: #4b5563;
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }
        
        @media (min-width: 768px) {
            .contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
        }
        
        .info-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
        }
        
        .contact-icon {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            background-color: #e0f2fe;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .contact-text {
            margin-left: 1rem;
        }
        
        .contact-label {
            font-weight: 500;
            margin-bottom: 0.25rem;
        }
        
        .contact-value {
            color: #4b5563;
        }
        
        .social-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-top: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-link {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            background-color: #f3f4f6;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }
        
        .social-link:hover {
            background-color: #e0f2fe;
        }
        
        .contact-form {
            display: flex;
            flex-direction: column;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: #374151;
            margin-bottom: 0.5rem;
        }
        
        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 0.5rem 1rem;
            border: 1px solid #d1d5db;
            border-radius: 0.375rem;
            outline: none;
            transition: all 0.3s ease;
        }
        
        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            border-color: #0284c7;
            box-shadow: 0 0 0 2px rgba(2, 132, 199, 0.5);
        }
        
        .form-textarea {
            min-height: 8rem;
            resize: vertical;
        }
        
        .submit-btn {
            width: 100%;
            padding: 0.75rem 1rem;
            background-color: #0284c7;
            color: white;
            font-weight: 500;
            border: none;
            border-radius: 0.375rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .submit-btn:hover {
            background-color: #0369a1;
        }

        .form-input:invalid,
.form-textarea:invalid {
    border-color: #ef4444;
}

.form-input:focus:invalid,
.form-textarea:focus:invalid {
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.5);
}

.required-field::after {
    content: '*';
    color: #ef4444;
    margin-left: 0.25rem;
}
       /* End Contact Section Styles */
      
      /* FAQ Section Styles */
        .faq {
            padding: 4rem 0;
            background-color: #f9fafb;
        }
        
        .faq-container {
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        .faq-wrapper {
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
        }
        
        .faq-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .faq-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: #0c4a6e;
            margin-bottom: 1rem;
        }
        
        @media (min-width: 768px) {
            .faq-title {
                font-size: 2.5rem;
            }
        }
        
        .faq-subtitle {
            font-size: 1.125rem;
            color: #4b5563;
        }
        
        .faq-items {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .faq-item {
            background-color: white;
            padding: 1.5rem;
            border-radius: 0.75rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }
        
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            padding: 0;
            cursor: pointer;
            outline: none;
        }
        
        .faq-question-text {
            font-size: 1.125rem;
            font-weight: 500;
            color: #1f2937;
        }
        
        .faq-icon {
            color: #0284c7;
            transition: transform 0.3s ease;
            margin-left: 1rem;
            flex-shrink: 0;
        }
        
        .faq-icon.open {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            color: #4b5563;
            line-height: 1.6;
        }
        
        .faq-answer.open {
            max-height: 500px;
            margin-top: 1rem;
        }
        
        .faq-more {
            text-align: center;
            margin-top: 3rem;
        }
        
        .faq-more-text {
            color: #4b5563;
            margin-bottom: 1rem;
        }
        
        .faq-contact-btn {
            display: inline-flex;
            align-items: center;
            padding: 0.75rem 1.5rem;
            background-color: #0284c7;
            color: white;
            font-weight: 500;
            border-radius: 0.375rem;
            transition: background-color 0.3s ease;
            text-decoration: none;
        }
        
        .faq-contact-btn:hover {
            background-color: #0369a1;
        }
        
        .faq-contact-icon {
            margin-left: 0.5rem;
        }
      /* End FAQ Section Styles */
      
      /* CTA Section Styles */
        .cta {
            padding: 4rem 0;
            background-color: #0369a1;
            color: white;
            text-align: center;
        }
        
        .cta-container {
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        .cta-title {
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        @media (min-width: 768px) {
            .cta-title {
                font-size: 2.5rem;
            }
        }
        
        .cta-text {
            font-size: 1.125rem;
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 2rem;
        }
        
        .cta-buttons {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        
        @media (min-width: 640px) {
            .cta-buttons {
                flex-direction: row;
                justify-content: center;
            }
        }
        
        .cta-btn-primary {
            padding: 0.75rem 1.5rem;
            background-color: white;
            color: #0369a1;
            font-weight: 500;
            border-radius: 0.375rem;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }
        
        .cta-btn-primary:hover {
            background-color: #f3f4f6;
        }
        
        .cta-btn-secondary {
            padding: 0.75rem 1.5rem;
            border: 1px solid white;
            color: white;
            font-weight: 500;
            border-radius: 0.375rem;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }
        
        .cta-btn-secondary:hover {
            background-color: #075985;
        }
       /* End CTA Section Styles */
      
      /* Footer Styles */
        .footer {
            background-color: #111827;
            color: white;
            padding: 3rem 0;
        }
        
        .footer-container {
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        .footer-brand {
            display: flex;
            flex-direction: column;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            text-decoration: none;
        }
        
        .logo-icon {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 0.375rem;
            background-color: #0284c7;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .logo-text {
            margin-left: 0.75rem;
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
        }
        
        .footer-description {
            color: #9ca3af;
            margin-bottom: 1.5rem;
        }
        
        /*
        .footer-social {
            display: flex;
            gap: 1rem;
        }
        
        .social-link {
            color: #9ca3af;
            transition: color 0.3s ease;
        }
        
        .social-link:hover {
            color: white;
        }
        
        .footer-column {
            display: flex;
            flex-direction: column;
        }
        
        .footer-title {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .footer-link {
            color: #9ca3af;
            transition: color 0.3s ease;
            text-decoration: none;
        }
        
        .footer-link:hover {
            color: white;
        }
        */
        
        .footer-bottom {
            border-top: 1px solid #1f2937;
            padding-top: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
            }
        }
        
        .footer-copyright {
            color: #9ca3af;
            margin-bottom: 1rem;
        }
        
        @media (min-width: 768px) {
            .footer-copyright {
                margin-bottom: 0;
            }
        }
        
        .footer-legal {
            display: flex;
            gap: 1.5rem;
        }
        
        .legal-link {
            color: #9ca3af;
            transition: color 0.3s ease;
            text-decoration: none;
        }
        
        .legal-link:hover {
            color: white;
        }
      /* End Footer Styles */
