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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: white;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 0;
    background: #14B8A6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 8px 4px;
}

.nav-link:hover {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-link.active {
    color: white;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFFFFF 0%, #E0F2FE 100%);
    border-radius: 2px 2px 0 0;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s;
}

.language-selector:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.login-btn {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.login-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Main Content */
.main {
    min-height: 100vh;
    background: linear-gradient(135deg, #0F766E 0%, #14B8A6 50%, #0D9488 100%);
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 180px);
    position: relative;
    z-index: 1;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    color: white;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.hero-title span {
    display: block;
}

.phoenix-text {
    color: white;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #FFFFFF 0%, #E0F2FE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    max-width: 500px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.btn {
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
    justify-content: center;
}

.btn-primary {
    background-color: white;
    color: #0F766E;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid white;
}

.btn-primary:hover {
    background-color: #F0FDFA;
    color: #0D9488;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.progress-card {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: white;
    border: 2px solid #14B8A6;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.progress-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F0FDFA;
    border-radius: 50%;
}

.progress-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.progress-label {
    font-size: 12px;
    color: #64748B;
    font-weight: 500;
}

.progress-value {
    font-size: 16px;
    color: #0F766E;
    font-weight: 700;
}

/* How It Works Section */
.how-it-works {
    position: relative;
    background: linear-gradient(to bottom, #F8FAFC 0%, #FFFFFF 100%);
    padding: 120px 0;
    color: #1F2937;
    overflow: hidden;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(20, 184, 166, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(20, 184, 166, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    position: relative;
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.section-title {
    font-size: 52px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 20px;
    color: #64748B;
    line-height: 1.7;
    font-weight: 400;
}

.features-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    z-index: 1;
}

.feature-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border: 1px solid #E2E8F0;
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 20px 40px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #14B8A6, #5EEAD4);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 30px 60px rgba(20, 184, 166, 0.15);
    border-color: #14B8A6;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 72px;
    font-weight: 800;
    color: #F1F5F9;
    line-height: 1;
    z-index: 0;
    transition: color 0.4s;
}

.feature-card:hover .feature-number {
    color: #E0F2FE;
}

.feature-icon-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s;
    position: relative;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon-pink {
    background: linear-gradient(135deg, #FCE4EC 0%, #F8BBD0 100%);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.2);
}

.feature-icon-blue {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.2);
}

.feature-icon-yellow {
    background: linear-gradient(135deg, #FFF9C4 0%, #FFF59D 100%);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.2);
}

.feature-title {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.3;
    z-index: 1;
    margin-top: 8px;
}

.feature-description {
    position: relative;
    font-size: 16px;
    color: #64748B;
    line-height: 1.7;
    z-index: 1;
    flex-grow: 1;
}

.feature-accent {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s;
    filter: blur(40px);
    z-index: 0;
}

.feature-accent-pink {
    background: rgba(233, 30, 99, 0.3);
    top: -40px;
    right: -40px;
}

.feature-accent-blue {
    background: rgba(33, 150, 243, 0.3);
    top: -40px;
    right: -40px;
}

.feature-accent-yellow {
    background: rgba(255, 193, 7, 0.3);
    top: -40px;
    right: -40px;
}

.feature-card:hover .feature-accent {
    opacity: 1;
}

/* Statistics Section */
.statistics {
    position: relative;
    background: linear-gradient(135deg, #0F766E 0%, #14B8A6 50%, #5EEAD4 100%);
    padding: 100px 0;
    overflow: hidden;
}

.statistics-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    z-index: 1;
}

.stat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: -2px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.stat-plus,
.stat-percent {
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.stat-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    transition: all 0.6s;
}

.stat-decoration-1 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    top: -40px;
    right: -40px;
}

.stat-decoration-2 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
    bottom: -30px;
    left: -30px;
}

.stat-decoration-3 {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
}

.stat-decoration-4 {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    top: -20px;
    left: -20px;
}

.stat-card:hover .stat-decoration {
    opacity: 0.3;
    transform: scale(1.2);
}

.stat-card:hover .stat-decoration-3 {
    transform: translateY(-50%) scale(1.2);
}

/* Specialists Section */
.specialists {
    position: relative;
    background: linear-gradient(to bottom, #F0FDFA 0%, #E0F2FE 100%);
    padding: 120px 0;
    overflow: hidden;
}

.specialists .section-header {
    position: relative;
    z-index: 1;
}

.carousel-wrapper {
    position: relative;
    margin-top: 60px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 32px;
    width: fit-content;
    will-change: transform;
}

.carousel-track.auto-scroll {
    animation: scroll 50s linear infinite;
}

.carousel-wrapper:hover .carousel-track.auto-scroll,
.carousel-track.paused {
    animation-play-state: paused;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 16px));
    }
}

.carousel-gradient-left,
.carousel-gradient-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 10;
    pointer-events: none;
}

.carousel-gradient-left {
    left: 0;
    background: linear-gradient(to right, #F0FDFA 0%, rgba(240, 253, 250, 0) 100%);
}

.carousel-gradient-right {
    right: 0;
    background: linear-gradient(to left, #F0FDFA 0%, rgba(240, 253, 250, 0) 100%);
}

.specialist-card {
    flex: 0 0 320px;
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 20px rgba(0, 0, 0, 0.04);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.specialist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #14B8A6, #5EEAD4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.specialist-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 20px 40px rgba(20, 184, 166, 0.15),
        0 0 0 1px rgba(20, 184, 166, 0.1);
    border-color: rgba(20, 184, 166, 0.2);
}

.specialist-card:hover::before {
    transform: scaleX(1);
}

.specialist-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #E0F2FE 0%, #B2F5EA 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s;
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.15);
}

.specialist-card:hover .specialist-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(20, 184, 166, 0.25);
}

.specialist-name {
    font-size: 22px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
    line-height: 1.3;
}

.specialist-specialization {
    font-size: 18px;
    font-weight: 600;
    color: #14B8A6;
    margin-bottom: 8px;
    line-height: 1.4;
}

.specialist-experience {
    font-size: 16px;
    color: #64748B;
    font-weight: 500;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .nav {
        order: 3;
        width: 100%;
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .progress-card {
        min-width: 180px;
        padding: 12px 16px;
    }
    
    .how-it-works {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 40px;
    }
    
    .feature-card {
        padding: 32px 28px;
    }
    
    .feature-number {
        font-size: 56px;
        top: 20px;
        right: 20px;
    }
    
    .feature-icon {
        width: 72px;
        height: 72px;
    }
    
    .feature-title {
        font-size: 22px;
    }
    
    .statistics {
        padding: 80px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stat-card {
        padding: 36px 24px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .stat-plus,
    .stat-percent {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 16px;
    }
    
    .specialists {
        padding: 80px 0;
    }
    
    .specialist-card {
        flex: 0 0 280px;
        padding: 32px 24px;
    }
    
    .specialist-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .specialist-name {
        font-size: 20px;
    }
    
    .specialist-specialization {
        font-size: 16px;
    }
    
    .carousel-gradient-left,
    .carousel-gradient-right {
        width: 100px;
    }
}

/* CTA Section */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #F8FAFC 0%, #E0F2FE 50%, #F0FDFA 100%);
    padding: 120px 0;
    overflow: hidden;
}

.cta-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

.cta-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
    z-index: 0;
}

.cta-decoration-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #14B8A6 0%, transparent 70%);
    top: -150px;
    left: -150px;
    animation: float 8s ease-in-out infinite;
}

.cta-decoration-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #5EEAD4 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.cta-text {
    margin-bottom: 40px;
}

.cta-title {
    font-size: 52px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.cta-description {
    font-size: 20px;
    color: #64748B;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn span,
.cta-btn svg {
    position: relative;
    z-index: 1;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(20, 184, 166, 0.4);
}

.cta-btn-secondary {
    background: white;
    color: #14B8A6;
    border: 2px solid #14B8A6;
}

.cta-btn-secondary:hover {
    background: #14B8A6;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.2);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: white;
    padding: 80px 0 32px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(20, 184, 166, 0.5) 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.footer-description {
    font-size: 15px;
    color: #94A3B8;
    line-height: 1.7;
    max-width: 300px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #94A3B8;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #14B8A6;
    transition: width 0.3s;
}

.footer-link:hover {
    color: #14B8A6;
    transform: translateX(4px);
}

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

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #94A3B8;
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #14B8A6;
}

.footer-contact-item a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: #14B8A6;
}

.footer-social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14B8A6;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #14B8A6;
    color: white;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    text-align: center;
}

.footer-copyright {
    color: #64748B;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .cta-title {
        font-size: 42px;
    }
    
    .cta-description {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer {
        padding: 60px 0 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Contact Page Styles */
.contact-header {
    background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
    padding: 140px 0 80px;
    text-align: center;
    border-bottom: 1px solid #CBD5E1;
    margin-top: 80px;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.contact-subtitle {
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.contact-content {
    background: #F8FAFC;
    padding: 80px 0;
    min-height: calc(100vh - 400px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-section-title {
    font-size: 26px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 32px;
    letter-spacing: -0.2px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 28px;
    border-bottom: 2px solid #CBD5E1;
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-label {
    font-size: 17px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.contact-info-text {
    font-size: 15px;
    color: #334155;
    line-height: 1.7;
    margin: 0;
}

.contact-info-note {
    font-size: 13px;
    color: #64748B;
    font-style: normal;
    margin-top: 4px;
}

.contact-link {
    color: #059669;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 600;
}

.contact-link:hover {
    color: #047857;
    text-decoration: underline;
}

.contact-form-wrapper {
    background: white;
    padding: 42px;
    border-radius: 16px;
    border: 2px solid #CBD5E1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

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

.form-label {
    font-size: 14px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 4px;
}

.form-input,
.form-textarea {
    padding: 12px 16px;
    border: 2px solid #CBD5E1;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: #0F172A;
    background: #F8FAFC;
    transition: all 0.2s;
    width: 100%;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #059669;
    background: white;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #94A3B8;
}

.form-textarea {
    resize: vertical;
    min-height: 130px;
    font-family: inherit;
}

.form-submit-btn {
    background: #059669;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
    margin-top: 8px;
    border: 2px solid #047857;
}

.form-submit-btn:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.4);
}

.form-submit-btn:active {
    transform: translateY(0);
    background: #065F46;
}

/* Success Notification */
.success-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 22px;
    min-width: 360px;
    max-width: 480px;
    z-index: 1000;
    transform: translateX(500px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #E2E8F0;
}

.success-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.success-notification-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
}

.success-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #0D9488 0%, #14B8A6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.success-message h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 6px;
}

.success-message p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
}

.success-close {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    color: #64748B;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.success-close:hover {
    background: #E2E8F0;
    color: #334155;
    border-color: #CBD5E1;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 32px;
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-header {
        padding: 60px 0 40px;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .contact-content {
        padding: 60px 0;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .success-notification {
        min-width: calc(100% - 40px);
        right: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 32px 20px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .stat-plus,
    .stat-percent {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-btn {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-section-title {
        font-size: 24px;
    }
}

/* Reviews Page Styles */
.reviews-banner {
    background: linear-gradient(135deg, #0D9488 0%, #14B8A6 50%, #5EEAD4 100%);
    padding: 140px 0 80px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.reviews-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.reviews-banner-title {
    font-size: 42px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 1;
}

.reviews-banner-subtitle {
    font-size: 17px;
    color: #334155;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.reviews-content {
    background: #F8FAFC;
    padding: 80px 0;
    min-height: calc(100vh - 400px);
}

.reviews-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -0.3px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.review-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    border: 2px solid #E2E8F0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

.review-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: #CBD5E1;
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0D9488 0%, #14B8A6 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.2);
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: 17px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 4px;
}

.review-date {
    font-size: 13px;
    color: #64748B;
    font-weight: 400;
}

.review-rating {
    margin-bottom: 16px;
}

.stars {
    display: flex;
    gap: 4px;
}

.star {
    font-size: 20px;
    color: #CBD5E1;
    line-height: 1;
}

.star.filled {
    color: #FBBF24;
}

.review-text {
    font-size: 15px;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.review-actions {
    display: flex;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #E2E8F0;
}

.review-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1.5px solid #E2E8F0;
    border-radius: 8px;
    background: #F8FAFC;
    color: #64748B;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.review-action-btn:hover {
    background: #F1F5F9;
    border-color: #CBD5E1;
    color: #334155;
}

.review-action-btn.like-btn:hover {
    background: #ECFDF5;
    border-color: #0D9488;
    color: #059669;
}

.review-action-btn.dislike-btn:hover {
    background: #FEF2F2;
    border-color: #EF4444;
    color: #DC2626;
}

.review-action-btn svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .reviews-banner {
        padding: 120px 0 60px;
    }
    
    .reviews-banner-title {
        font-size: 32px;
    }
    
    .reviews-banner-subtitle {
        font-size: 15px;
    }
    
    .reviews-content {
        padding: 60px 0;
    }
    
    .reviews-section-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .review-card {
        padding: 24px;
    }
    
    .review-avatar {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .review-name {
        font-size: 16px;
    }
    
    .review-text {
        font-size: 14px;
    }
}

/* About Page Styles */
.about-main {
    padding-top: 140px;
}

.about-main .hero-title {
    font-size: 56px;
}

.about-main .hero-title span:first-child {
    color: #0F172A;
}

.about-main .phoenix-text {
    color: #14B8A6;
    font-weight: 800;
}

.about-main .hero-description {
    font-size: 19px;
    color: #334155;
    max-width: 550px;
    line-height: 1.7;
}

.about-main .hero-image .image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.about-main .main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .about-main .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-main .hero-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-main {
        padding-top: 120px;
    }
    
    .about-main .hero-title {
        font-size: 42px;
    }
    
    .about-main .hero-description {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .reviews-banner-title {
        font-size: 26px;
    }
    
    .reviews-section-title {
        font-size: 24px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .about-main .hero-title {
        font-size: 32px;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(to bottom, #F0FDFA 0%, #E0F2FE 100%);
    padding: 100px 0;
}

.why-choose-us .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #0F172A;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.3px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    border: 2px solid #E2E8F0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #CBD5E1;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.benefit-icon-yellow {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
}

.benefit-icon-pink {
    background: linear-gradient(135deg, #FCE7F3 0%, #FBCFE8 100%);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-title {
    font-size: 22px;
    font-weight: 700;
    color: #14B8A6;
    margin-bottom: 16px;
}

.benefit-description {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}

/* Mission Section */
.mission-section {
    background: white;
    padding: 80px 0;
}

.mission-card {
    background: linear-gradient(135deg, #F0FDFA 0%, #E0F2FE 100%);
    border-radius: 24px;
    padding: 60px 50px;
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid #E2E8F0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.mission-title {
    font-size: 36px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.3px;
}

.mission-text {
    font-size: 17px;
    color: #334155;
    line-height: 1.8;
    text-align: center;
}

/* Team Section */
.team-section {
    background: #F8FAFC;
    padding: 100px 0;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.team-image {
    position: relative;
}

.team-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.team-title {
    font-size: 42px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.team-description {
    font-size: 17px;
    color: #334155;
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(to bottom, #E0F2FE 0%, #B2F5EA 100%);
    padding: 100px 0;
}

.faq-title {
    font-size: 42px;
    font-weight: 700;
    color: #0F172A;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.3px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    border: 2px solid #E2E8F0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #CBD5E1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    border-color: #14B8A6;
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.15);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 17px;
    font-weight: 600;
    color: #0F172A;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #F8FAFC;
    color: #14B8A6;
}

.faq-item.active .faq-question {
    background: #F0FDFA;
    color: #14B8A6;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: #64748B;
}

.faq-item.active .faq-icon {
    color: #14B8A6;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .team-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-image {
        order: -1;
    }
    
    .mission-card {
        padding: 48px 36px;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 80px 0;
    }
    
    .why-choose-us .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .benefit-card {
        padding: 32px 24px;
    }
    
    .mission-section {
        padding: 60px 0;
    }
    
    .mission-card {
        padding: 40px 28px;
    }
    
    .mission-title {
        font-size: 28px;
    }
    
    .mission-text {
        font-size: 15px;
    }
    
    .team-section {
        padding: 80px 0;
    }
    
    .team-title {
        font-size: 32px;
    }
    
    .team-description {
        font-size: 15px;
    }
    
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-title {
        font-size: 32px;
        margin-bottom: 32px;
    }
    
    .faq-question {
        padding: 20px 24px;
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 0 24px 20px;
        font-size: 14px;
    }
}

/* Blogs Page Styles */
.blogs-banner {
    background: linear-gradient(135deg, #0D9488 0%, #14B8A6 50%, #5EEAD4 100%);
    padding: 140px 0 80px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.blogs-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.blogs-banner-title {
    font-size: 56px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.blogs-banner-subtitle {
    font-size: 20px;
    color: #334155;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.blogs-content {
    background: #F8FAFC;
    padding: 80px 0;
    min-height: calc(100vh - 400px);
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #E2E8F0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: #CBD5E1;
}

.blog-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #E2E8F0;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(20, 184, 166, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.blog-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-date {
    font-size: 14px;
    color: #94A3B8;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: 22px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.blog-excerpt {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-read-more {
    color: #14B8A6;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    width: fit-content;
}

.blog-read-more:hover {
    color: #0D9488;
    gap: 10px;
}

.blog-read-more::after {
    content: '→';
    transition: transform 0.3s;
}

.blog-read-more:hover::after {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .blogs-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .blogs-banner {
        padding: 120px 0 60px;
    }
    
    .blogs-banner-title {
        font-size: 42px;
    }
    
    .blogs-banner-subtitle {
        font-size: 18px;
    }
    
    .blogs-content {
        padding: 60px 0;
    }
    
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-body {
        padding: 24px;
    }
    
    .blog-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .blogs-banner-title {
        font-size: 32px;
    }
    
    .blogs-banner-subtitle {
        font-size: 16px;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-body {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 18px;
    }
    
    .blog-excerpt {
        font-size: 14px;
    }
}

/* News Page Styles */
.news-banner {
    background: linear-gradient(135deg, #0D9488 0%, #14B8A6 50%, #5EEAD4 100%);
    padding: 140px 0 80px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.news-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.news-banner-title {
    font-size: 52px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.news-banner-subtitle {
    font-size: 19px;
    color: #334155;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.news-content {
    background: #F8FAFC;
    padding: 80px 0;
    min-height: calc(100vh - 400px);
}

.news-section-title {
    font-size: 40px;
    font-weight: 700;
    color: #0F172A;
    text-align: center;
    margin-bottom: 56px;
    letter-spacing: -0.3px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 36px;
    max-width: 1400px;
    margin: 0 auto;
}

.news-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid #E2E8F0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #14B8A6, #5EEAD4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(20, 184, 166, 0.15);
    border-color: #14B8A6;
}

.news-card:hover::before {
    transform: scaleX(1);
}

.news-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E1 100%);
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .news-image img {
    transform: scale(1.08);
}

.news-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 16px;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #64748B;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-date svg {
    color: #14B8A6;
    width: 18px;
    height: 18px;
}

.news-title {
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.3;
    letter-spacing: -0.3px;
    transition: color 0.3s;
}

.news-card:hover .news-title {
    color: #14B8A6;
}

.news-description {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    flex: 1;
}

.news-read-more {
    color: #14B8A6;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    width: fit-content;
    padding: 12px 24px;
    background: #F0FDFA;
    border-radius: 10px;
    border: 2px solid #E2E8F0;
    margin-top: 8px;
}

.news-read-more:hover {
    background: #14B8A6;
    color: white;
    border-color: #14B8A6;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.news-read-more::after {
    content: '→';
    transition: transform 0.3s;
}

.news-read-more:hover::after {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .news-banner {
        padding: 120px 0 60px;
    }
    
    .news-banner-title {
        font-size: 38px;
    }
    
    .news-banner-subtitle {
        font-size: 17px;
    }
    
    .news-content {
        padding: 60px 0;
    }
    
    .news-section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .news-image {
        height: 220px;
    }
    
    .news-body {
        padding: 28px;
    }
    
    .news-title {
        font-size: 22px;
    }
    
    .news-read-more {
        padding: 10px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .news-banner-title {
        font-size: 30px;
    }
    
    .news-banner-subtitle {
        font-size: 15px;
    }
    
    .news-section-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .news-image {
        height: 200px;
    }
    
    .news-body {
        padding: 24px;
        gap: 12px;
    }
    
    .news-title {
        font-size: 20px;
    }
    
    .news-description {
        font-size: 14px;
    }
    
    .news-read-more {
        padding: 10px 18px;
        font-size: 14px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

