/* Modern Minimalist Design - QIG New Site */

:root {
    /* Color Palette - Softer, Modern */
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --accent: #06b6d4;
    --accent-light: #22d3ee;
    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #64748b;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --border: #e2e8f0;
    --success: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    font-size: 16px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Top Navigation */
.top-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-text h2 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 0;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--text-light);
    display: block;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switcher {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-white);
    color: var(--text-dark);
    font-size: 0.875rem;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* Hero Banner - New Layout */
.hero-banner {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1) contrast(1.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    color: white;
    padding: 5rem 0;
    text-align: left;
}

.hero-heading {
    font-size: 5.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.75rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.8;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-hero-primary {
    background: white;
    color: var(--primary);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Section Headings */
.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

/* Metrics & Services Combined Section */
.metrics-services-combined {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.metrics-services-combined::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.combined-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: stretch;
}

.metrics-column,
.services-column {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    padding-top: 0;
    height: 100%;
}

.metrics-column .section-heading,
.services-column .section-heading {
    margin-bottom: 3rem;
    text-align: left;
    flex-shrink: 0;
}

.metrics-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.metric-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s;
}

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

.metric-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
    border-color: var(--primary);
}

.metric-symbol {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.metric-label {
    color: var(--text-light);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Portfolio List Styles */
.portfolio-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: -1.5rem;
}

.portfolio-intro {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.portfolio-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.portfolio-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    align-items: flex-start;
}

.portfolio-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.12);
    border-color: var(--primary-light);
}

.portfolio-item-highlight {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: var(--primary);
}

.portfolio-number {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 2rem;
    padding-top: 0.125rem;
}

.portfolio-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.portfolio-stock {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
}

.portfolio-return {
    font-size: 1rem;
    font-weight: 700;
    color: var(--success);
    line-height: 1.5;
}

.portfolio-cta-text {
    font-size: 1rem;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-portfolio-cta {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    margin-bottom: 1.5rem;
}

.btn-portfolio-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.portfolio-disclaimer {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.6;
    font-style: italic;
}

/* Advantages Section - New Layout */
.advantages-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

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

.advantage-item {
    display: flex;
    gap: 2rem;
    padding: 3rem;
    background: white;
    border-radius: 24px;
    transition: all 0.4s;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.advantage-item:hover {
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    transform: translateY(-8px);
    border-color: var(--primary);
}

.advantage-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.advantage-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.advantage-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Services Grid in Combined Section */
.services-column {
    display: flex;
    flex-direction: column;
}

.services-column .section-heading {
    flex-shrink: 0;
}

.services-column .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 0;
    flex: 1;
    align-content: start;
    grid-auto-rows: 1fr;
}

.service-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 4rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(6, 182, 212, 0.05));
    opacity: 0;
    transition: opacity 0.4s;
}

.service-item:hover::after {
    opacity: 1;
}

.service-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
    border-color: var(--primary);
}

.service-item i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-item h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
}

.services-cta {
    text-align: center;
}

/* Team Spotlight - New Design */
.team-spotlight-new {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e293b 100%);
    color: white;
}

.team-hero-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-image: url('../img/hero_1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    background-attachment: local;
}

.team-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hero_1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(5px);
    z-index: 0;
}

.team-hero-bg {
    position: relative;
    min-height: 500px;
    width: 100%;
    z-index: 1;
}

.team-hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.team-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(5px) brightness(1) contrast(1.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    display: block;
}

.team-hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(30, 41, 59, 0.4) 100%);
    z-index: 1;
}

/* Decorative Elements */
.hero-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* City Skyline */
.city-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, 
        rgba(37, 99, 235, 0.3) 0%,
        rgba(37, 99, 235, 0.2) 50%,
        transparent 100%);
    clip-path: polygon(
        0% 100%, 5% 80%, 8% 85%, 12% 70%, 15% 75%, 
        20% 60%, 25% 65%, 30% 50%, 35% 55%, 40% 45%,
        45% 50%, 50% 40%, 55% 45%, 60% 35%, 65% 40%,
        70% 30%, 75% 35%, 80% 25%, 85% 30%, 90% 20%,
        95% 25%, 100% 15%, 100% 100%
    );
}

/* Data Visualizations */
.data-visualizations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Bar Chart */
.bar-chart {
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 200px;
    height: 150px;
    background-image: 
        linear-gradient(to top, rgba(59, 130, 246, 0.7) 0%, rgba(59, 130, 246, 0.7) 35%, transparent 35%),
        linear-gradient(to top, rgba(59, 130, 246, 0.7) 0%, rgba(59, 130, 246, 0.7) 50%, transparent 50%),
        linear-gradient(to top, rgba(59, 130, 246, 0.7) 0%, rgba(59, 130, 246, 0.7) 70%, transparent 70%),
        linear-gradient(to top, rgba(59, 130, 246, 0.7) 0%, rgba(59, 130, 246, 0.7) 45%, transparent 45%),
        linear-gradient(to top, rgba(59, 130, 246, 0.7) 0%, rgba(59, 130, 246, 0.7) 80%, transparent 80%),
        linear-gradient(to top, rgba(59, 130, 246, 0.7) 0%, rgba(59, 130, 246, 0.7) 55%, transparent 55%);
    background-size: 18px 100%, 18px 100%, 18px 100%, 18px 100%, 18px 100%, 18px 100%;
    background-position: 10px bottom, 34px bottom, 58px bottom, 82px bottom, 106px bottom, 130px bottom;
    background-repeat: no-repeat;
    animation: barGrow 1.5s ease-out;
}

/* Line Chart */
.line-chart {
    position: absolute;
    top: 30%;
    right: 15%;
    width: 180px;
    height: 100px;
    border-left: 2px solid rgba(59, 130, 246, 0.4);
    border-bottom: 2px solid rgba(59, 130, 246, 0.4);
}

.line-chart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(59, 130, 246, 0.3) 20%,
        rgba(59, 130, 246, 0.5) 40%,
        rgba(59, 130, 246, 0.3) 60%,
        rgba(59, 130, 246, 0.6) 80%,
        transparent 100%
    );
    clip-path: polygon(
        0% 80%, 10% 60%, 20% 40%, 30% 50%, 40% 30%,
        50% 20%, 60% 35%, 70% 25%, 80% 40%, 90% 30%,
        100% 50%, 100% 100%, 0% 100%
    );
}

/* Grid Pattern */
.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(59, 130, 246, 0.4) 1px, transparent 1px);
    background-size: 30px 30px, 50px 50px;
    background-position: 0 0, 15px 15px;
    opacity: 0.4;
    animation: particleFloat 20s linear infinite;
}

@keyframes barGrow {
    from {
        height: 0;
    }
    to {
        height: var(--bar-height);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100px);
    }
}

.team-hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.team-slogan h1 {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 0;
}

.team-group-photo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 600px;
}

.team-group-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.team-intro-text-section {
    padding: 4rem 0;
    background: #1e293b;
    text-align: center;
}

.team-intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.team-intro-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 1000px;
    margin: 0 auto;
}

.team-members-grid-section {
    padding: 5rem 0;
    background: #1e293b;
}

.team-members-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.team-member-card-new {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.team-member-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.team-member-photo-new {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--bg-gray);
}

.team-member-photo-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-member-info-new {
    padding: 2rem;
    text-align: center;
}

.team-member-info-new h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-member-info-new p {
    font-size: 1rem;
    color: var(--text-medium);
    margin: 0;
}

@media (max-width: 968px) {
    .team-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .team-slogan {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .team-slogan h1 {
        font-size: 2.5rem;
    }

    .team-group-photo {
        width: 100%;
        max-width: 400px;
    }

    .team-members-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .team-members-grid-new {
        grid-template-columns: 1fr;
    }
}

/* Team Spotlight - Old Layout (kept for compatibility) */
.team-spotlight {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.team-spotlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-member-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.team-member-card:hover {
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
    transform: translateY(-10px);
    border-color: var(--primary);
}

.member-photo {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    position: relative;
}

.member-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(6, 182, 212, 0.2));
    z-index: 1;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 0;
}

.member-info {
    padding: 3rem;
    flex: 1;
}

.member-info h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-light);
}

.member-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item h4 {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.detail-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Investment Freedom Section */
.investment-freedom-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.leader-quote-block {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.leader-photo {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-gray);
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.leader-quote-content {
    flex: 1;
}

.quote-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    font-style: italic;
    border-left: 4px solid var(--primary);
    padding-left: 2rem;
}

.leader-info h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.leader-title {
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: 0.25rem;
    line-height: 1.6;
}

.leader-bio {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.freedom-section {
    margin-bottom: 6rem;
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        #f0f4f8 0%, 
        #e2e8f0 20%,
        #cbd5e1 40%,
        #e2e8f0 60%,
        #f0f4f8 80%,
        #f8fafc 100%
    );
    width: 100%;
    position: relative;
}

.section-title-freedom {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.highlight-blue {
    color: var(--primary);
}

.freedom-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.freedom-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.freedom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
}

.freedom-icon {
    width: 60px;
    height: 60px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.freedom-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.freedom-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.freedom-card p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1rem;
}

.freedom-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-freedom {
    background: var(--primary);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-freedom:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.cost-effectiveness-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 5rem 3rem;
    border-radius: 24px;
    color: white;
}

.cost-effectiveness-section .section-title-freedom {
    color: white;
    margin-bottom: 2rem;
}

.cost-effectiveness-section .highlight-blue {
    color: var(--accent-light);
}

.cost-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-feature-item {
    display: flex;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    align-items: flex-start;
}

.pricing-feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    border-color: var(--accent-light);
}

.pricing-feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(6, 182, 212, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-light);
}

.pricing-feature-icon i {
    font-size: 1.75rem;
    color: var(--accent-light);
}

.pricing-feature-content {
    flex: 1;
}

.pricing-feature-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.pricing-feature-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-conclusion {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 500;
}

@media (max-width: 968px) {
    .leader-quote-block {
        flex-direction: column;
        text-align: center;
    }

    .leader-photo {
        width: 250px;
        height: 250px;
    }

    .freedom-cards {
        grid-template-columns: 1fr;
    }

    .cost-metrics {
        grid-template-columns: 1fr;
    }

    .section-title-freedom {
        font-size: 2rem;
    }
}

/* Our Values Section */
.values-section {
    padding: 6rem 0;
    background: white;
}

.values-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.values-text-column {
    padding-right: 2rem;
}

.values-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.values-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.values-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.values-cards-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all 0.3s;
}

.value-card:hover {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.value-icon-circle {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.value-card-content {
    flex: 1;
}

.value-card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.value-card-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
}

/* Professional Team Section */
.professional-team-section {
    padding: 6rem 0;
    background: var(--bg-light);
    text-align: center;
}

.team-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.team-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    line-height: 1.2;
}

.team-description {
    max-width: 900px;
    margin: 0 auto;
}

.team-description p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.team-description p:last-child {
    margin-bottom: 0;
}

@media (max-width: 968px) {
    .values-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .values-text-column {
        padding-right: 0;
        text-align: center;
    }

    .values-title {
        font-size: 2.5rem;
    }

    .team-title {
        font-size: 2.5rem;
    }
}

/* Qualifications Section - New Layout */
.qualifications-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.qualifications-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.qualifications-section .section-heading {
    color: white;
}

.qualifications-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.qualification-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 350px;
    flex: 1;
    min-width: 300px;
}

.qualification-badge:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.3);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.qualification-badge i {
    font-size: 3rem;
    color: var(--accent-light);
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.5));
}

.qualification-badge p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
    font-size: 1.0625rem;
}

/* Latest News Section */
.latest-news-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-light) 0%, var(--bg-white) 50%);
}

.news-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.news-item:hover {
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
    transform: translateY(-8px);
    border-color: var(--primary);
}

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

/* News Item with Image */
.news-item-with-image {
    position: relative;
}

.news-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.news-item-with-image:hover .news-image img {
    transform: scale(1.1);
}

.news-item-with-image .news-date {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(37, 99, 235, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    z-index: 2;
    flex-direction: column;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.news-item-with-image .news-day {
    font-size: 2rem;
}

.news-item-with-image .news-month {
    font-size: 0.875rem;
}

.news-item-with-image .news-year {
    font-size: 0.75rem;
}

.news-date {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.news-date::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.news-day {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.news-month-year {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.news-month {
    font-size: 1.125rem;
    font-weight: 600;
    opacity: 0.95;
    display: block;
}

.news-year {
    font-size: 1rem;
    opacity: 0.85;
    display: block;
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 2.5rem;
}

.news-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.news-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.news-link:hover {
    color: var(--accent);
    gap: 0.75rem;
}

.news-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.news-link:hover i {
    transform: translateX(4px);
}

/* News Pagination */
.news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-white);
    color: var(--text-medium);
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.pagination-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.pagination-btn:disabled,
.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-white);
    color: var(--text-medium);
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.pagination-number:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.pagination-number.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.pagination-ellipsis {
    color: var(--text-light);
    padding: 0 0.5rem;
    font-weight: 600;
}

/* News Detail Page Styles */
.news-detail-section {
    padding: 4rem 0 6rem;
    background: linear-gradient(to bottom, var(--bg-light) 0%, var(--bg-white) 20%);
}

.news-detail-wrapper {
    margin: 0 auto;
}

.news-detail-nav {
    margin-bottom: 2rem;
}

.back-to-news {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.back-to-news:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
    transform: translateX(-4px);
}

.back-to-news i {
    transition: transform 0.3s ease;
}

.back-to-news:hover i {
    transform: translateX(-4px);
}

.news-detail-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border);
}

.news-detail-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.news-detail-date,
.news-detail-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-medium);
    font-size: 0.9375rem;
    font-weight: 500;
}

.news-detail-date i,
.news-detail-category i {
    color: var(--primary);
    font-size: 0.875rem;
}

.news-detail-category {
    background: rgba(37, 99, 235, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--primary);
    font-weight: 600;
}

.news-detail-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
}

.news-detail-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.news-detail-image {
    width: 100%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.news-detail-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.news-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.news-detail-image:hover img {
    transform: scale(1.05);
}

.news-detail-content {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.news-detail-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.news-content-body {
    margin: 0 auto;
}

.news-lead {
    font-size: 1.375rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 0 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(6, 182, 212, 0.08));
    border-left: 5px solid var(--primary);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
    position: relative;
}

.news-lead::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.news-content-body h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 3.5rem 0 1.5rem 0;
    line-height: 1.4;
    position: relative;
    padding-left: 1.5rem;
    padding-bottom: 1rem;
}

.news-content-body h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.news-content-body h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.news-content-body p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin: 0 0 1.5rem 0;
}

.news-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-light);
    color: var(--text-medium);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.tag:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.news-detail-share {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.news-detail-share h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1.5rem 0;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: var(--bg-light);
    color: var(--text-medium);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.share-facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
}

.share-twitter:hover {
    background: #1da1f2;
    color: white;
    border-color: #1da1f2;
}

.share-linkedin:hover {
    background: #0077b5;
    color: white;
    border-color: #0077b5;
}

.share-email:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.related-news-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid var(--border);
}

.related-news-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 2.5rem 0;
    text-align: center;
}

.related-news-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.related-news-item {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    position: relative;
}

.related-news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.related-news-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
    border-color: var(--primary);
}

.related-news-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

.related-news-item:hover .related-news-image img {
    transform: scale(1.1);
}

.related-news-content {
    padding: 1.5rem;
}

.related-news-date {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.related-news-content h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5;
}

.related-news-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-news-content h3 a:hover {
    color: var(--primary);
}

/* Footer */
.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: white;
}

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

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

/* Page Header Banner */
.page-header-banner {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85) 0%, rgba(6, 182, 212, 0.75) 100%);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Vision & Mission Section */
.vm-section {
    padding: 5rem 0;
    background: white;
}

.vm-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.vm-card-item {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.vm-card-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vm-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
}

.vm-card-item h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.vm-card-item p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.125rem;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-card-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--bg-gray);
}

.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-info {
    padding: 1.5rem;
    text-align: center;
}

.team-card-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-card-info p {
    color: var(--text-medium);
    font-size: 0.875rem;
}

/* Services Detail Section */
.services-detail-section {
    padding: 6rem 0;
    background: var(--bg-white);
    position: relative;
}

.service-detail-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.service-detail-item {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 4rem 3.5rem;
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid var(--primary);
}

/* 奇数项：图标在左，内容在右，白色背景 */
.service-detail-item:nth-child(odd) {
    background: var(--bg-white);
    flex-direction: row;
    border-left: 4px solid var(--primary);
    border-right: none;
}

/* 偶数项：内容在左，图标在右，浅灰背景 */
.service-detail-item:nth-child(even) {
    background: var(--bg-light);
    flex-direction: row-reverse;
    border-left: none;
    border-right: 4px solid var(--accent);
}

.service-detail-item:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.service-detail-item:nth-child(odd):hover {
    border-left-width: 5px;
}

.service-detail-item:nth-child(even):hover {
    border-right-width: 5px;
}

/* 分隔线 */
.service-detail-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 3.5rem;
    right: 3.5rem;
    height: 1px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(226, 232, 240, 0.6) 15%, 
        rgba(226, 232, 240, 0.8) 50%,
        rgba(226, 232, 240, 0.6) 85%, 
        transparent
    );
    z-index: 1;
}

/* 第一个和最后一个的圆角 */
.service-detail-item:first-child {
    border-radius: 24px 24px 0 0;
}

.service-detail-item:last-child {
    border-radius: 0 0 24px 24px;
}

.service-detail-item:only-child {
    border-radius: 24px;
}

.service-detail-item.highlight {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(6, 182, 212, 0.05)) !important;
    border-left: 4px solid var(--primary) !important;
    border-right: 4px solid var(--accent) !important;
}

.service-icon-large {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
    transition: transform 0.3s ease;
}

.service-detail-item:hover .service-icon-large {
    transform: scale(1.1) rotate(5deg);
}

.service-detail-item:nth-child(even) .service-icon-large {
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.service-detail-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

.service-detail-content p:last-child {
    margin-bottom: 0;
}

/* 偶数项内容右对齐 */
.service-detail-item:nth-child(even) .service-detail-content {
    text-align: right;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.cta-content {
    text-align: center;
}

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

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Team Page Section - New Layout */
.team-page-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

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

.team-card-new {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: row;
    border: 1px solid var(--border);
}

.team-card-new:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    border-color: var(--primary);
}

.team-card-photo-new {
    width: 280px;
    min-width: 280px;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    position: relative;
}

.team-card-photo-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
    z-index: 1;
}

.team-card-photo-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 0;
}

.team-card-info-new {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.team-card-info-new h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
}

.team-card-info-new .role {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.team-card-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.team-card-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    background: white;
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.team-card-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.team-card-btn i {
    font-size: 0.875rem;
}

/* Testimonials Section */
.testimonials-section-new {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        #f0f4f8 0%, 
        #e2e8f0 20%,
        #cbd5e1 40%,
        #e2e8f0 60%,
        #f0f4f8 80%,
        #f8fafc 100%
    );
    position: relative;
    overflow: hidden;
}

.testimonials-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(37, 99, 235, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(6, 182, 212, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.04) 0%, transparent 60%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.08) 20px,
            rgba(255, 255, 255, 0.08) 40px
        );
    pointer-events: none;
    z-index: 0;
    animation: backgroundShift 20s ease-in-out infinite;
}

.testimonials-section-new::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: float 15s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

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

.testimonials-section-new .container {
    position: relative;
    z-index: 1;
}

.testimonials-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset,
        0 2px 8px rgba(37, 99, 235, 0.1);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.testimonial-card-new {
    background: var(--bg-white);
    padding: 4rem 3.5rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    position: relative;
    border-left: 4px solid var(--primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
}

.testimonial-card-new:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card-new:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card-new:nth-child(3) {
    animation-delay: 0.3s;
}

.testimonial-card-new:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.02) 0%, 
        transparent 50%,
        rgba(6, 182, 212, 0.02) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.testimonial-card-new:hover::before {
    opacity: 1;
}

/* 斑马纹效果 - 奇数项白色背景，左边框 */
.testimonial-card-new:nth-child(odd) {
    background: var(--bg-white);
    border-left: 4px solid var(--primary);
    border-right: none;
    position: relative;
    box-shadow: -2px 0 8px rgba(37, 99, 235, 0.1) inset;
}

/* 斑马纹效果 - 偶数项浅灰背景，右边框 */
.testimonial-card-new:nth-child(even) {
    background: var(--bg-light);
    border-left: none;
    border-right: 4px solid var(--accent);
    position: relative;
    box-shadow: 2px 0 8px rgba(6, 182, 212, 0.1) inset;
}

/* 第一个和最后一个的圆角 */
.testimonial-card-new:first-child {
    border-radius: 16px 16px 0 0;
}

.testimonial-card-new:last-child {
    border-radius: 0 0 16px 16px;
}

/* 如果只有一个项目，四个角都圆角 */
.testimonial-card-new:only-child {
    border-radius: 16px;
}

.testimonial-card-new:hover {
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(37, 99, 235, 0.1) inset,
        0 4px 16px rgba(37, 99, 235, 0.15);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.98) !important;
}

.testimonial-card-new:nth-child(odd):hover {
    border-left-width: 6px;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(37, 99, 235, 0.1) inset,
        0 4px 16px rgba(37, 99, 235, 0.15),
        -4px 0 20px rgba(37, 99, 235, 0.2);
}

.testimonial-card-new:nth-child(even):hover {
    background: rgba(248, 250, 252, 0.98) !important;
    border-right-width: 6px;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(6, 182, 212, 0.1) inset,
        0 4px 16px rgba(6, 182, 212, 0.15),
        4px 0 20px rgba(6, 182, 212, 0.2);
}

/* 卡片之间的分隔线 */
.testimonial-card-new:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 3.5rem;
    right: 3.5rem;
    height: 1px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(226, 232, 240, 0.6) 15%, 
        rgba(226, 232, 240, 0.8) 50%,
        rgba(226, 232, 240, 0.6) 85%, 
        transparent
    );
    z-index: 1;
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    opacity: 0.15;
    z-index: 0;
    box-shadow: 
        0 4px 16px rgba(37, 99, 235, 0.2),
        0 0 0 4px rgba(255, 255, 255, 0.3) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card-new:hover .quote-icon {
    opacity: 0.25;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 8px 24px rgba(37, 99, 235, 0.3),
        0 0 0 4px rgba(255, 255, 255, 0.4) inset;
}

/* 偶数项：引用图标在左边 */
.testimonial-card-new:nth-child(even) .quote-icon {
    right: auto;
    left: 2.5rem;
    opacity: 0.12;
    background: linear-gradient(135deg, var(--accent-light), var(--primary-light));
    box-shadow: 
        0 4px 16px rgba(6, 182, 212, 0.2),
        0 0 0 4px rgba(255, 255, 255, 0.3) inset;
}

.testimonial-card-new:nth-child(even):hover .quote-icon {
    opacity: 0.22;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 
        0 8px 24px rgba(6, 182, 212, 0.3),
        0 0 0 4px rgba(255, 255, 255, 0.4) inset;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0 0 2.5rem 0;
    padding: 0;
    border: none;
    quotes: none;
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    letter-spacing: -0.01em;
}

.testimonial-card-new:hover .testimonial-text {
    color: var(--text-dark);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
}

.testimonial-divider {
    height: 2px;
    background: linear-gradient(to right, 
        transparent,
        var(--primary) 20%,
        var(--primary) 50%,
        var(--accent) 50%,
        var(--accent) 80%,
        transparent
    );
    margin: 2.5rem 0;
    opacity: 0.3;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.testimonial-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* 偶数项：分隔线从右边开始 */
.testimonial-card-new:nth-child(even) .testimonial-divider {
    background: linear-gradient(to left, 
        transparent,
        var(--accent) 20%,
        var(--accent) 50%,
        var(--primary) 50%,
        var(--primary) 80%,
        transparent
    );
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: auto;
    padding-top: 1rem;
    justify-content: flex-start;
}

/* 奇数项：作者信息在左边 */
.testimonial-card-new:nth-child(odd) .testimonial-author {
    justify-content: flex-start;
    flex-direction: row;
}

/* 偶数项：作者信息在右边 */
.testimonial-card-new:nth-child(even) .testimonial-author {
    justify-content: flex-end;
    flex-direction: row;
}

.testimonial-card-new:nth-child(even) .author-info {
    text-align: right;
}

.author-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 1.75rem;
    box-shadow: 
        0 6px 20px rgba(37, 99, 235, 0.25),
        0 0 0 3px rgba(255, 255, 255, 0.5) inset,
        0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.author-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 70%
    );
    transform: rotate(45deg);
    transition: transform 0.6s;
}

.testimonial-card-new:hover .author-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 10px 30px rgba(37, 99, 235, 0.35),
        0 0 0 4px rgba(255, 255, 255, 0.6) inset,
        0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-card-new:hover .author-avatar::before {
    transform: rotate(225deg);
}

.testimonial-card-new:nth-child(even) .author-avatar {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    box-shadow: 
        0 6px 20px rgba(6, 182, 212, 0.25),
        0 0 0 3px rgba(255, 255, 255, 0.5) inset,
        0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-card-new:nth-child(even):hover .author-avatar {
    box-shadow: 
        0 10px 30px rgba(6, 182, 212, 0.35),
        0 0 0 4px rgba(255, 255, 255, 0.6) inset,
        0 4px 12px rgba(0, 0, 0, 0.15);
}

.author-info h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.testimonial-card-new:hover .author-info h4 {
    color: var(--primary);
}

.testimonial-card-new:nth-child(even):hover .author-info h4 {
    color: var(--accent);
}

.author-info p {
    margin: 0;
    color: var(--text-medium);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Contact Section */
.contact-section-new {
    padding: 5rem 0;
    background: var(--bg-light);
}

.contact-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-wrapper-new h2,
.contact-info-wrapper-new h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-form-new {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group-new {
    margin-bottom: 1.5rem;
}

.form-group-new label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group-new input,
.form-group-new textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group-new input:focus,
.form-group-new textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-info-list {
    margin-bottom: 3rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.contact-icon-new {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.contact-details-new h4 {
    margin: 0 0 0.5rem;
    color: var(--text-dark);
}

.contact-details-new p {
    margin: 0;
    color: var(--text-medium);
}

.business-cards-new {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.business-cards-new h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.card-item-new {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.card-item-new:last-child {
    margin-bottom: 0;
}

.card-avatar-new {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.card-info-new h4 {
    margin: 0 0 0.25rem;
    color: var(--text-dark);
    font-size: 1rem;
}

.card-info-new p {
    margin: 0;
    color: var(--text-medium);
    font-size: 0.875rem;
}

.card-email {
    color: var(--primary);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
    }

    .main-nav.active {
        display: flex;
    }

    .hero-heading {
        font-size: 3.5rem;
    }

    .hero-description {
        font-size: 1.375rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .team-spotlight-grid {
        grid-template-columns: 1fr;
    }

    .advantages-list {
        grid-template-columns: 1fr;
    }

    .metrics-grid {
        flex-direction: column;
        align-items: center;
    }

    .qualifications-list {
        flex-direction: column;
        align-items: center;
    }

    .latest-news-section {
        padding: 4rem 0;
    }

    .news-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-pagination {
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .pagination-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .pagination-number {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }

    .pagination-ellipsis {
        display: none;
    }

    .news-detail-section {
        padding: 3rem 0 4rem;
    }

    .news-detail-wrapper {
        max-width: 100%;
    }

    .news-detail-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .news-detail-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .news-detail-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .news-detail-subtitle {
        font-size: 1.125rem;
    }

    .news-detail-image {
        height: 250px;
        border-radius: 16px;
        margin-bottom: 2rem;
    }

    .news-detail-content {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .news-lead {
        font-size: 1.125rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .news-content-body h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem 0;
    }

    .news-content-body p {
        font-size: 1rem;
    }

    .news-detail-tags {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .news-detail-share {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        width: 100%;
        justify-content: center;
    }

    .related-news-section {
        margin-top: 3rem;
        padding-top: 3rem;
    }

    .related-news-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .related-news-image {
        height: 150px;
    }

    .news-item {
        flex-direction: column;
    }

    .news-image {
        height: 150px;
    }

    .news-item-with-image .news-date {
        top: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
    }

    .news-item-with-image .news-day {
        font-size: 1.5rem;
    }

    .news-date {
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }

    .news-day {
        font-size: 2.5rem;
    }

    .news-month {
        font-size: 1rem;
    }

    .news-year {
        font-size: 0.9375rem;
    }

    .news-content {
        padding: 2rem 1.5rem;
    }

    .news-title {
        font-size: 1.25rem;
        -webkit-line-clamp: 3;
    }

    .news-excerpt {
        font-size: 0.9375rem;
        -webkit-line-clamp: 4;
    }

    .combined-content-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
        align-items: start;
    }

    .metrics-column .section-heading,
    .services-column .section-heading {
        text-align: center;
    }

    .metrics-grid {
        flex-direction: column;
    }

    .portfolio-subtitle {
        font-size: 1.25rem;
        text-align: center;
    }

    .portfolio-intro {
        text-align: center;
    }

    .portfolio-item {
        padding: 1rem 1.25rem;
        flex-direction: column;
        gap: 0.75rem;
    }

    .portfolio-number {
        min-width: auto;
    }

    .portfolio-stock {
        font-size: 0.9375rem;
    }

    .portfolio-return {
        font-size: 0.9375rem;
    }

    .portfolio-cta-text {
        font-size: 0.9375rem;
    }

    .btn-portfolio-cta {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    .services-column .services-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        flex: 0;
    }

    .page-header-content h1 {
        font-size: 2rem;
    }

    .page-header-content p {
        font-size: 1rem;
    }

    .vm-cards {
        grid-template-columns: 1fr;
    }

    .service-detail-list {
        margin: 0 1rem;
        border-radius: 16px;
    }

    .service-detail-item {
        flex-direction: column !important;
        gap: 2rem;
        padding: 2.5rem 1.5rem;
        border-left: 3px solid var(--primary) !important;
        border-right: none !important;
        text-align: center;
    }

    .service-detail-item:nth-child(even) {
        border-left: 3px solid var(--accent) !important;
        border-right: none !important;
    }

    .service-detail-item:nth-child(even) .service-detail-content {
        text-align: center;
    }

    .service-detail-item:first-child {
        border-radius: 16px 16px 0 0;
    }

    .service-detail-item:last-child {
        border-radius: 0 0 16px 16px;
    }

    .service-detail-item:only-child {
        border-radius: 16px;
    }

    .service-detail-item:not(:last-child)::after {
        left: 1.5rem;
        right: 1.5rem;
    }

    .service-icon-large {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .service-detail-content h2 {
        font-size: 1.75rem;
    }

    .contact-grid-new {
        grid-template-columns: 1fr;
    }

    .testimonials-grid-new {
        grid-template-columns: 1fr;
        gap: 0;
        border-radius: 12px;
        margin: 0 1rem;
    }

    .testimonial-card-new {
        padding: 2.5rem 1.5rem;
    }

    .testimonial-card-new:nth-child(odd) {
        border-left-width: 3px;
        border-right: none;
    }

    .testimonial-card-new:nth-child(even) {
        border-left: none;
        border-right-width: 3px;
    }

    .testimonial-card-new:first-child {
        border-radius: 12px 12px 0 0;
    }

    .testimonial-card-new:last-child {
        border-radius: 0 0 12px 12px;
    }

    .testimonial-card-new:not(:last-child)::after {
        left: 1.5rem;
        right: 1.5rem;
    }

    .quote-icon {
        top: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .testimonial-card-new:nth-child(even) .quote-icon {
        right: auto;
        left: 1.5rem;
    }

    .testimonial-text {
        font-size: clamp(1.125rem, 5vw, 1.5rem);
        margin-bottom: 2rem;
    }

    .testimonial-divider {
        margin: 1.5rem 0;
    }

    .author-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .author-info p {
        font-size: 0.875rem;
    }

    .team-grid-new {
        grid-template-columns: 1fr;
    }

    .team-card-new {
        flex-direction: column;
    }

    .team-card-photo-new {
        width: 100%;
        min-width: 100%;
        height: 300px;
    }

    .cost-effectiveness-section {
        padding: 3rem 1.5rem;
    }

    .pricing-feature-item {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }

    .pricing-feature-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .pricing-feature-icon i {
        font-size: 1.5rem;
    }

    .pricing-feature-content h3 {
        font-size: 1.25rem;
    }

    .pricing-feature-content p {
        font-size: 1rem;
    }

    .pricing-conclusion {
        font-size: 1rem;
    }

    .mission-item {
        padding: 2rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .mission-content {
        width: 100%;
    }

    .mission-title {
        font-size: 1.5rem;
    }

    .mission-item-1 .mission-title {
        font-size: 1.5rem;
    }

    .mission-description {
        font-size: 0.9375rem;
    }

    .mission-arrow {
        align-self: flex-end;
    }

    .mission-header-bar {
        padding: 2rem 0;
    }

    .mission-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 0 1.5rem;
    }

    .mission-header-text {
        font-size: 1.75rem;
    }

    .mission-header-arrow {
        align-self: flex-end;
    }
}

/* Bio Modal */
.bio-modal-new {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 2rem;
}

.bio-modal-content-new {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.bio-modal-close-new {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.3s;
}

.bio-modal-close-new:hover {
    background: var(--primary);
    color: white;
}

.bio-modal-body-new {
    padding: 3rem;
}

.bio-modal-body-new h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.bio-modal-body-new p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* About Page - New Design */
.about-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.about-hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1) contrast(1.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.4) 0%, rgba(6, 182, 212, 0.3) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 0;
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3rem;
    color: white;
}

.about-hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.license-awards-section {
    padding: 4rem 0;
    background: white;
}

.license-awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.license-card,
.awards-card {
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 16px;
    border: 2px solid var(--border);
}

.license-card h3,
.awards-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.license-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.license-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.awards-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.awards-list li {
    padding: 0.75rem 0;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border);
}

.awards-list li:last-child {
    border-bottom: none;
}

.founders-section {
    padding: 6rem 0;
    background: var(--bg-light);
    text-align: center;
}

.founders-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4rem;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 800px;
    margin: 0 auto;
    align-items: stretch;
}

.founder-card {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.founder-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.founder-role {
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.founder-bio {
    text-align: left;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.founder-bio p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
}

.founder-bio p:first-child {
    -webkit-line-clamp: 2;
}

.founder-bio p:last-child {
    margin-bottom: 0;
    -webkit-line-clamp: 3;
}

.about-content-section {
    padding: 6rem 0;
    background: white;
}

.section-heading-large {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.about-content-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-content-text p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.quote-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.quote-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-mark {
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
}

.quote-text-large {
    font-size: 1.75rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin: 3rem 0 2rem;
    position: relative;
    z-index: 1;
}

.quote-text-large em {
    color: var(--primary);
    font-style: normal;
    font-weight: 600;
}

.quote-author {
    margin-top: 2rem;
}

.quote-author strong {
    font-size: 1.25rem;
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.quote-author p {
    color: var(--text-medium);
    font-size: 1rem;
}

.mission-section {
    padding: 6rem 0;
    background: #f0f4f8;
}

.mission-header-bar {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: var(--primary);
    padding: 2.5rem 0;
    margin-bottom: 3rem;
}

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

.mission-header-text {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin: 0;
    letter-spacing: 0.5px;
}

.mission-header-arrow {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.3s ease;
}

.mission-header-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.mission-header-arrow i {
    font-size: 0.875rem;
    color: white;
}

.mission-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 3rem;
    background: white;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    margin-bottom: 0;
    cursor: pointer;
}

.mission-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mission-item:hover .mission-title {
    color: var(--primary);
}

.mission-item-1:hover .mission-title {
    color: var(--primary-dark);
}

.mission-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mission-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-medium);
    margin-bottom: 0;
}

.mission-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.mission-item-1 .mission-title {
    color: var(--primary);
}

.mission-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin: 0;
    max-width: 600px;
}

.mission-arrow {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mission-arrow-filled {
    background: var(--primary);
    border: none;
}

.mission-arrow-filled i {
    font-size: 1rem;
    color: white;
}

.mission-arrow-outline {
    background: transparent;
    border: 2px solid var(--text-dark);
}

.mission-arrow-outline i {
    font-size: 1rem;
    color: var(--text-dark);
}

.mission-item:hover .mission-arrow {
    transform: translateX(8px) scale(1.1);
}

.mission-item:hover .mission-arrow-filled {
    background: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.mission-item:hover .mission-arrow-outline {
    background: var(--text-dark);
    border-color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mission-item:hover .mission-arrow-outline i {
    color: white;
}

.mission-item:hover .mission-description {
    color: var(--text-dark);
}




.team-section-about {
    padding: 6rem 0;
    background: var(--bg-light);
}

.team-intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-medium);
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: center;
}

.milestones-section {
    padding: 6rem 0;
    background: white;
}

.milestones-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding-left: 3rem;
}

.milestones-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
}

.milestone-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.milestone-item::before {
    content: '';
    position: absolute;
    left: -3.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--primary);
}

.milestone-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 80px;
}

.milestone-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.milestone-content p {
    color: var(--text-medium);
    line-height: 1.7;
}

.partner-funds-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.partner-categories {
    max-width: 1200px;
    margin: 0 auto;
}

.partner-category {
    margin-bottom: 4rem;
}

.partner-category h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.partner-logo-item {
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.partner-logo-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 968px) {
    .about-hero-title {
        font-size: 2.5rem;
    }

    .license-awards-grid {
        grid-template-columns: 1fr;
    }

    .founders-grid {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .milestones-timeline {
        padding-left: 2rem;
    }

    .milestone-item {
        flex-direction: column;
        gap: 1rem;
    }
}

