/* ========================================
   AN KHUE - Internal Pages Styles
   ======================================== */

/* Header for internal pages */
.header-page {
    background: transparent;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.header-page.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 2px solid rgba(16, 185, 129, 0.12);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 25%, #e0f2fe 50%, #fefce8 75%, #ffffff 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(16, 185, 129, 0.15);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(245, 158, 11, 0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.65;
}

.section-title {
    letter-spacing: -0.02em;
}

/* Compact page title bar for inner pages */
.page-title-bar {
    padding: 100px 0 32px;
    background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
    border-bottom: 2px solid rgba(16, 185, 129, 0.12);
}

.page-title-bar-heading {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-bright);
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.page-title-bar-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin: 0;
}

/* Story Section */
.story-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f0fdf4 100%);
    position: relative;
}

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

.story-content {
    max-width: 100%;
}

.story-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(251, 191, 36, 0.1));
    border-radius: 50px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.story-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 30px;
    line-height: 1.2;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.story-text:last-of-type {
    margin-bottom: 0;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.story-stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    border: 2px solid rgba(16, 185, 129, 0.12);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.story-stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.25);
}

.story-stat-item:nth-child(1) .stat-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.story-stat-item:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.story-stat-item:nth-child(3) .stat-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.story-stat-item:nth-child(4) .stat-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.4rem;
    color: white;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-info .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-bright);
    line-height: 1.2;
}

.stat-info .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Vision & Mission Section - uses .vm-box from style.css */
.vm-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 40%, #f8fafc 100%);
    position: relative;
}

.vm-section .vm-section-header {
    margin-bottom: 48px;
}

.vm-section .vm-cards-three {
    gap: 28px;
}

/* Team Section (About Page) */
.team-section {
    padding: 120px 0;
    background: var(--bg-primary);
}

.team-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 600px;
    margin: 0 auto;
}

.team-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    background: var(--bg-accent);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    transition: all 0.4s ease;
    text-align: left;
}

.team-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.team-avatar {
    flex-shrink: 0;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-info {
    flex: 1;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 5px;
}

.team-role {
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Roadmap Section */
.roadmap-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    font-size: 0.95rem;
    z-index: 1;
    box-shadow: 0 4px 15px var(--secondary-glow);
}

.timeline-content {
    width: calc(50% - 60px);
    background: var(--bg-accent);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 60px;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Culture Page Styles */
/* Culture Hero Section */
.culture-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 25%, #fef3c7 50%, #ecfdf5 75%, #f0f9ff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(139, 92, 246, 0.2);
}

.culture-hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float-circle 20s infinite ease-in-out;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
    opacity: 0.25;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    bottom: -80px;
    left: -80px;
    animation-delay: 5s;
    opacity: 0.22;
}

.circle-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #06b6d4, #22c55e);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
    opacity: 0.2;
}

@keyframes float-circle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

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

.culture-badge,
.hero-badge {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(16, 185, 129, 0.12));
    color: #5b21b6;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 30px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
}

.culture-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 30px;
    line-height: 1.1;
}

.gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.culture-hero-text {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.culture-hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Office Life */
.office-life {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 40%, #f0fdf4 100%);
    position: relative;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}


.office-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 45px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(16, 185, 129, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.office-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 24px 50px rgba(245, 158, 11, 0.2);
}

.office-card-featured {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(245, 158, 11, 0.06));
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.12);
}

.office-card-featured::before {
    transform: scaleX(1);
    background: linear-gradient(90deg, #10b981, #f59e0b);
}

.office-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    transition: all 0.4s ease;
}

.office-card:hover .office-number {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.1);
}

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

.icon-gradient-1 {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.icon-gradient-2 {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.icon-gradient-3 {
    background: linear-gradient(135deg, #ec4899, #db2777);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.icon-gradient-4 {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.icon-gradient-5 {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.icon-gradient-6 {
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

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

.office-icon i {
    font-size: 2rem;
    color: white;
}

.office-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 15px;
}

.office-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.office-card:hover .card-shine {
    left: 100%;
}

/* Culture Values Modern */
.culture-values {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f0f9ff 40%, #faf5ff 100%);
    position: relative;
}

.values-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.value-card-modern {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(139, 92, 246, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.value-card-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    transition: height 0.4s ease;
    z-index: 0;
}

.value-card-modern:hover::after {
    height: 100%;
}

.value-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--accent-violet);
    box-shadow: 0 24px 50px rgba(139, 92, 246, 0.2);
}

.value-highlight {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(16, 185, 129, 0.06));
    border-color: #8b5cf6;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
}

.value-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.value-icon-modern {
    width: 70px;
    height: 70px;
    background: var(--emerald-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    transition: all 0.4s ease;
}

.value-card-modern:nth-child(2) .value-icon-modern { background: linear-gradient(135deg, #3b82f6, #2563eb); box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3); }
.value-card-modern:nth-child(3) .value-icon-modern { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3); }
.value-card-modern:nth-child(4) .value-icon-modern { background: linear-gradient(135deg, #ec4899, #db2777); box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3); }
.value-card-modern:nth-child(5) .value-icon-modern { background: linear-gradient(135deg, #06b6d4, #0891b2); box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3); }
.value-card-modern:nth-child(6) .value-icon-modern { background: linear-gradient(135deg, #8b5cf6, #7c3aed); box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3); }

.value-card-modern:hover .value-icon-modern {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.value-icon-modern i {
    font-size: 1.8rem;
    color: white;
}

.value-badge {
    padding: 6px 14px;
    background: #6366f1;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

.value-card-modern h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.value-card-modern p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.value-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: 50%;
    transition: all 0.4s ease;
}

.value-card-modern:hover .value-decoration {
    transform: scale(1.5);
    opacity: 0.8;
}

/* Policy Page Styles */
.policy-intro {
    padding: 60px 0;
    background: var(--bg-primary);
    text-align: center;
}

.policy-intro .intro-text {
    max-width: 700px;
    margin: 0 auto;
}

.policy-cards {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.policy-card {
    background: var(--bg-accent);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.policy-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.policy-icon {
    width: 70px;
    height: 70px;
    background: var(--emerald-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px var(--primary-glow);
}

.policy-icon i {
    font-size: 1.75rem;
    color: white;
}

.policy-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 15px;
}

.policy-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.policy-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
    transition: gap 0.3s ease;
}

.policy-link:hover {
    gap: 12px;
}

/* Modern Policy Page Styles */
.policy-main-section {
    padding: 160px 0 100px;
    background: var(--light-gradient);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.policy-header-modern {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.policy-badge {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--primary-glow);
}

.policy-main-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 25px;
    line-height: 1.1;
}

.policy-main-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
}

.policy-cards-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.policy-card-modern {
    background: var(--bg-accent);
    border-radius: 28px;
    padding: 45px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.policy-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.featured-policy {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(245, 158, 11, 0.05));
    border-color: var(--primary);
}

.policy-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.policy-icon-modern {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

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

.policy-icon-modern i {
    font-size: 1.8rem;
    color: white;
}

.policy-badge-tag {
    padding: 7px 16px;
    background: var(--gold-gradient);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

.policy-card-modern h3 {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 20px;
}

.policy-card-modern p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.policy-features {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.policy-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.policy-features i {
    color: #22c55e;
    font-size: 0.9rem;
}

.policy-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.policy-btn-modern:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.policy-btn-modern:focus-visible,
.btn-cta-primary:focus-visible,
.btn-cta-secondary:focus-visible,
.btn-policy-contact:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.btn-cta-primary:active,
.btn-policy-contact:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-cta-secondary:active {
    transform: scale(0.98);
}

.card-glow {
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.policy-card-modern:hover .card-glow {
    opacity: 1;
}

/* Cooperation Section */
.cooperation-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.cooperation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.cooperation-card {
    background: var(--bg-accent);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.cooperation-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-lg);
}

.cooperation-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f97316, #fb923c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cooperation-icon i {
    font-size: 1.5rem;
    color: white;
}

.cooperation-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 15px;
}

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

/* Modern Cooperation Section */
.cooperation-section-modern {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.section-header-modern {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 20px;
    margin-bottom: 25px;
}

.section-title-modern {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 25px;
}

.section-description-modern {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.cooperation-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.cooperation-card-modern {
    background: var(--bg-accent);
    border-radius: 28px;
    padding: 45px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cooperation-card-modern:hover {
    transform: translateY(-12px);
    border-color: var(--secondary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.cooperation-featured {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(245, 158, 11, 0.05));
    border-color: var(--primary);
}

.cooperation-number {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 4.5rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.cooperation-icon-modern {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.cooperation-icon-modern i {
    font-size: 1.8rem;
    color: white;
}

.cooperation-card-modern h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cooperation-card-modern p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.card-decoration-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transition: width 0.4s ease;
}

.cooperation-card-modern:hover .card-decoration-line {
    width: 100%;
}

/* Cooperation Timeline */
.cooperation-timeline {
    max-width: 1100px;
    margin: 80px auto 0;
    padding: 60px;
    background: var(--bg-accent);
    border-radius: 32px;
    border: 1px solid var(--border-color);
}

.timeline-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 60px;
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    padding: 0 20px;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 12.5%;
    right: 12.5%;
    height: 4px;
    background: var(--gold-gradient);
    z-index: 0;
    border-radius: 4px;
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-dot {
    width: 60px;
    height: 60px;
    background: var(--bg-secondary);
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.timeline-step:nth-child(1) .timeline-dot {
    border-color: #6366f1;
    background: linear-gradient(135deg, #6366f1, #7c3aed);
}

.timeline-step:nth-child(2) .timeline-dot {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.timeline-step:nth-child(3) .timeline-dot {
    border-color: #ec4899;
    background: linear-gradient(135deg, #ec4899, #f472b6);
}

.timeline-step:nth-child(4) .timeline-dot {
    border-color: #f97316;
    background: linear-gradient(135deg, #f97316, #fb923c);
}

.timeline-dot::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: pulse-timeline 2s infinite;
    z-index: -1;
}

@keyframes pulse-timeline {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.timeline-content {
    padding: 0;
    min-width: 150px;
}

.timeline-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 8px;
    line-height: 1.4;
    white-space: normal;
    word-wrap: break-word;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    white-space: normal;
    word-wrap: break-word;
}

/* Policy CTA */
.policy-cta {
    padding: 100px 0;
    background: var(--bg-accent);
    border-top: 1px solid var(--border-color);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-bottom: 40px;
}

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

.cta-content .btn-primary:hover {
    background: var(--secondary);
    color: #000;
    transform: translateY(-5px);
}

/* Modern Policy CTA */
.policy-cta-modern {
    padding: 120px 0;
    background: var(--bg-primary);
}

.cta-card-modern {
    background: var(--bg-accent);
    border-radius: 32px;
    padding: 70px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.cta-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3);
    animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.cta-icon-large i {
    font-size: 3rem;
    color: white;
}

.cta-content-modern {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content-modern h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
}

.cta-content-modern p {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto 50px;
}

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

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: white;
    color: #6366f1;
    border: 2px solid #6366f1;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-3px);
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.decoration-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    bottom: -80px;
    left: -80px;
}

/* Contact Page Styles */
.contact-intro {
    padding: 60px 0;
    background: var(--bg-primary);
    text-align: center;
}

.contact-intro .intro-text {
    max-width: 700px;
    margin: 0 auto;
}

.contact-content {
    padding: 56px 0 80px;
    background: linear-gradient(180deg, #ecfdf5 0%, #f0fdf4 40%, #e0f2fe 60%, #f8fafc 100%);
    position: relative;
}

.contact-content .container {
    max-width: 1100px;
}

.contact-content .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

/* Contact Info Card */
.contact-info-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 45px;
    box-shadow: var(--shadow-md), 0 4px 0 rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.contact-info-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg), 0 8px 0 rgba(16, 185, 129, 0.15);
}

.contact-info-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 35px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--emerald-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
}

.info-item:nth-child(2) .info-icon { background: linear-gradient(135deg, #3b82f6, #2563eb); box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35); }
.info-item:nth-child(3) .info-icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35); }
.info-item:nth-child(4) .info-icon { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35); }

.info-icon i {
    font-size: 1.25rem;
    color: white;
}

.info-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.info-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Form Card */
.contact-form-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 45px;
    box-shadow: var(--shadow-md), 0 4px 0 rgba(6, 182, 212, 0.1);
    border: 2px solid rgba(6, 182, 212, 0.2);
}

.contact-form-card:hover {
    border-color: #06b6d4;
    box-shadow: var(--shadow-lg), 0 8px 0 rgba(6, 182, 212, 0.15);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-section);
    color: var(--text-primary);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input,
.contact-form textarea {
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-color: rgba(16, 185, 129, 0.3);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
    background: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.8;
}

.btn-submit:focus-visible {
    outline: 2px solid var(--primary-dark);
    outline-offset: 3px;
}

.btn-submit:active {
    transform: scale(0.98);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    font-size: 1rem;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ecfdf5 100%);
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 8px 0 rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.15);
}

.map-container iframe {
    display: block;
}

/* ========================================
   Footer Enhancements for Pages
   ======================================== */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    display: inline-flex;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-contact h4,
.footer-social h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: var(--bg-section);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

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

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* ========================================
   Responsive Styles for Pages
   ======================================== */
@media (max-width: 992px) {

    .vm-grid,
    .office-grid,
    .values-grid,
    .values-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .cooperation-grid,
    .cooperation-grid-modern,
    .policy-grid,
    .policy-cards-modern {
        grid-template-columns: 1fr;
    }

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

    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }

    .timeline-marker {
        left: 30px;
        width: 50px;
        height: 50px;
        font-size: 0.8rem;
    }

    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
    }

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

    .culture-hero {
        padding: 120px 0 80px;
    }

    .culture-hero-title {
        font-size: 2.8rem;
    }

    .culture-hero-stats {
        gap: 40px;
    }

    .policy-main-title {
        font-size: 2.8rem;
    }

    .timeline-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
        padding: 0 10px;
    }

    .timeline-steps::before {
        display: none;
    }

    .timeline-dot {
        width: 50px;
        height: 50px;
    }

    .timeline-content {
        min-width: auto;
        max-width: 250px;
        margin: 0 auto;
    }

    .timeline-content h5 {
        font-size: 0.9rem;
    }

    .timeline-content p {
        font-size: 0.78rem;
    }

    .cta-card-modern {
        padding: 50px 40px;
    }

    .cta-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 50px;
    }

    .page-title-bar {
        padding: 88px 0 24px;
    }

    .page-title-bar-heading {
        font-size: 1.75rem;
    }

    .page-title-bar-text {
        font-size: 0.95rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-title {
        font-size: 2rem;
    }

    .story-stats {
        grid-template-columns: 1fr;
    }

    .vm-grid,
    .office-grid,
    .values-grid,
    .values-grid-modern {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

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

    .culture-hero {
        padding: 100px 0 60px;
    }

    .culture-hero-title {
        font-size: 2.2rem;
    }

    .culture-hero-text {
        font-size: 1rem;
    }

    .culture-hero-stats {
        flex-direction: row;
        gap: 30px;
    }

    .hero-stat-number {
        font-size: 2.5rem;
    }

    .office-life {
        padding: 80px 0;
    }

    .office-card {
        padding: 35px 30px;
    }

    .office-number {
        font-size: 3rem;
    }

    .culture-values {
        padding: 80px 0;
    }

    .value-card-modern {
        padding: 35px 30px;
    }

    .policy-main-section {
        padding: 100px 0 80px;
    }

    .policy-main-title {
        font-size: 2.2rem;
    }

    .policy-main-desc {
        font-size: 1rem;
    }

    .policy-card-modern {
        padding: 35px 30px;
    }

    .cooperation-section-modern {
        padding: 80px 0;
    }

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

    .cooperation-card-modern {
        padding: 35px 30px;
    }

    .cooperation-number {
        font-size: 3.5rem;
    }

    .timeline-steps {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
    }

    .cooperation-timeline {
        padding: 40px 30px;
    }

    .timeline-title {
        font-size: 1.7rem;
    }

    .timeline-dot {
        width: 50px;
        height: 50px;
    }

    .timeline-content {
        max-width: 100%;
    }

    .timeline-content h5 {
        font-size: 0.95rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
    }

    .policy-cta-modern {
        padding: 80px 0;
    }

    .cta-card-modern {
        padding: 40px 30px;
    }

    .cta-content-modern h3 {
        font-size: 2rem;
    }

    .cta-content-modern p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.75rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .vm-card,
    .office-card,
    .value-card,
    .value-card-modern,
    .policy-card,
    .policy-card-modern,
    .cooperation-card,
    .cooperation-card-modern,
    .contact-info-card,
    .contact-form-card {
        padding: 25px 20px;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }

    .culture-hero-title {
        font-size: 1.8rem;
    }

    .culture-hero-title br {
        display: none;
    }

    .culture-hero-stats {
        flex-direction: column;
        gap: 25px;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    .office-number {
        font-size: 2.5rem;
        top: 15px;
        right: 20px;
    }

    .office-icon {
        width: 60px;
        height: 60px;
    }

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

    .value-icon-modern {
        width: 60px;
        height: 60px;
    }

    .value-icon-modern i {
        font-size: 1.5rem;
    }

    .value-card-modern h3 {
        font-size: 1.15rem;
    }

    .value-card-modern p {
        font-size: 0.9rem;
    }

    .policy-main-title {
        font-size: 1.8rem;
    }

    .policy-main-title br {
        display: none;
    }

    .policy-main-desc {
        font-size: 0.95rem;
    }

    .policy-icon-modern {
        width: 60px;
        height: 60px;
    }

    .policy-icon-modern i {
        font-size: 1.5rem;
    }

    .policy-card-modern h3 {
        font-size: 1.2rem;
    }

    .section-title-modern {
        font-size: 1.7rem;
    }

    .cooperation-number {
        font-size: 3rem;
        top: 20px;
        right: 20px;
    }

    .cooperation-icon-modern {
        width: 60px;
        height: 60px;
    }

    .cooperation-icon-modern i {
        font-size: 1.5rem;
    }

    .cooperation-card-modern h4 {
        font-size: 1.1rem;
    }

    .cooperation-timeline {
        padding: 30px 20px;
    }

    .timeline-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .timeline-dot {
        width: 50px;
        height: 50px;
    }

    .timeline-content h5 {
        font-size: 0.9rem;
    }

    .timeline-content p {
        font-size: 0.75rem;
    }

    .cta-card-modern {
        padding: 30px 20px;
    }

    .cta-icon-large {
        width: 80px;
        height: 80px;
    }

    .cta-icon-large i {
        font-size: 2.5rem;
    }

    .cta-content-modern h3 {
        font-size: 1.7rem;
    }

    .cta-content-modern p {
        font-size: 0.95rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   Policy Page Modern Styles
   ======================================== */

/* Policy Main Section */
.policy-main-section {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 25%, #e0e7ff 50%, #dbeafe 75%, #ecfdf5 100%);
    position: relative;
    overflow: hidden;
}

.policy-main-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 100% 30%, rgba(99, 102, 241, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.policy-header-modern {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.policy-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 30px;
    border: 2px solid rgba(99, 102, 241, 0.2);
}

.policy-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 25px;
    line-height: 1.2;
}

.policy-main-desc {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Policy Cards Modern */
.policy-cards-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.policy-card-modern {
    background: white;
    border-radius: 28px;
    padding: 50px 45px;
    position: relative;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.policy-card-modern:hover {
    transform: translateY(-10px);
    border-color: #6366f1;
    box-shadow: 0 25px 70px rgba(99, 102, 241, 0.2);
}

.featured-policy {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
    border-color: #6366f1;
}

.policy-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.policy-icon-modern {
    width: 85px;
    height: 85px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

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

.policy-icon-modern i {
    font-size: 2.2rem;
    color: white;
}

.policy-badge-tag {
    padding: 8px 18px;
    background: #6366f1;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 25px;
}

.policy-card-modern h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 18px;
}

.policy-card-modern>p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.policy-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.policy-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.policy-features i {
    color: #22c55e;
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.policy-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.policy-btn-modern:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.policy-btn-modern i {
    transition: transform 0.3s ease;
}

.policy-btn-modern:hover i {
    transform: translateX(5px);
}

.card-glow {
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.policy-card-modern:hover .card-glow {
    opacity: 1;
}

/* Cooperation Section Modern */
.cooperation-section-modern {
    padding: 100px 0;
    background: white;
    position: relative;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 70px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 25px;
    margin-bottom: 20px;
}

.section-title-modern {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
}

.section-description-modern {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.cooperation-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-bottom: 80px;
}

.cooperation-card-modern {
    background: white;
    border-radius: 24px;
    padding: 45px 40px;
    position: relative;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cooperation-card-modern:hover {
    transform: translateY(-8px);
    border-color: #f97316;
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.15);
}

.cooperation-featured {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(251, 146, 60, 0.05));
    border-color: #f97316;
}

.cooperation-number {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(251, 146, 60, 0.08));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: all 0.4s ease;
}

.cooperation-card-modern:hover .cooperation-number {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(251, 146, 60, 0.15));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.1);
}

.cooperation-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

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

.cooperation-icon-modern i {
    font-size: 2rem;
    color: white;
}

.cooperation-card-modern h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.cooperation-card-modern p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.8;
}

.card-decoration-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f97316, #fb923c);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.cooperation-card-modern:hover .card-decoration-line {
    transform: scaleX(1);
}

/* Cooperation Timeline */
.cooperation-timeline {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.timeline-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 60px;
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--gold-gradient);
    z-index: 0;
}

.timeline-step {
    position: relative;
    z-index: 1;
}

.timeline-dot {
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border: 3px solid var(--secondary);
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.timeline-step:nth-child(2) .timeline-dot {
    border-color: #8b5cf6;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.timeline-step:nth-child(3) .timeline-dot {
    border-color: #ec4899;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.timeline-step:nth-child(4) .timeline-dot {
    border-color: #f97316;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.timeline-step:hover .timeline-dot {
    transform: scale(1.2);
}

.cooperation-timeline .timeline-content {
    text-align: center;
    background: none;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

.timeline-content h5 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Policy CTA Modern */
.policy-cta-modern {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.cta-card-modern {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--bg-accent);
    border-radius: 32px;
    padding: 80px 70px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.cta-icon-large {
    width: 130px;
    height: 130px;
    background: var(--emerald-gradient);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 15px 40px var(--primary-glow);
}

.cta-icon-large i {
    font-size: 3.5rem;
    color: white;
}

.cta-content-modern {
    flex: 1;
}

.cta-content-modern h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 20px;
}

.cta-content-modern p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 750px;
}

.cta-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
}

.btn-cta-primary i {
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover i {
    transform: translateX(5px);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: #e2e8f0;
    color: #1e293b;
    transform: translateY(-2px);
}

.cta-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    pointer-events: none;
    opacity: 0.5;
}

.decoration-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.blob-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    top: -50px;
    right: -50px;
    animation: float-blob 6s infinite ease-in-out;
}

.blob-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #ec4899, #f97316);
    bottom: -50px;
    right: 50px;
    animation: float-blob 8s infinite ease-in-out;
    animation-delay: 2s;
}

@keyframes float-blob {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-20px, -20px) scale(1.1);
    }
}

/* ========================================
   Policy Detail Pages Styles
   ======================================== */

/* Policy Detail Hero */
.policy-detail-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 30%, #e0e7ff 60%, #fefce8 100%);
    position: relative;
    text-align: center;
    overflow: hidden;
    border-bottom: 2px solid rgba(16, 185, 129, 0.2);
}

.policy-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 30%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(99, 102, 241, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.policy-detail-header {
    max-width: 800px;
    margin: 0 auto;
}

.policy-detail-badge {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.15));
    color: var(--primary-dark);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 30px;
    border: 2px solid rgba(16, 185, 129, 0.35);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
}

.policy-detail-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 25px;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.policy-detail-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Policy Content Section */
.policy-content-section {
    padding: 120px 0;
    background: var(--bg-primary);
}

.policy-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.policy-intro-box {
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 50%, #ffffff 100%);
    border-left: 5px solid var(--secondary);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 60px;
    border: 2px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 4px 24px rgba(245, 158, 11, 0.08);
}

.policy-intro-box .policy-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-bright);
    margin: 0;
}

.policy-section {
    margin-bottom: 60px;
}

.policy-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--primary), var(--accent-violet)) 1;
}

.policy-subsection {
    margin: 30px 0;
}

.policy-subsection-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 20px;
}

.policy-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.policy-text.policy-highlight {
    background: rgba(245, 158, 11, 0.1);
    padding: 25px;
    border-left: 4px solid var(--secondary);
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-bright);
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.policy-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Policy Contact CTA */
.policy-contact-cta {
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 40%, #e0f2fe 100%);
    border-radius: 32px;
    padding: 80px 60px;
    text-align: center;
    color: var(--text-bright);
    margin-top: 100px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(16, 185, 129, 0.25);
    box-shadow: 0 8px 40px rgba(16, 185, 129, 0.12);
}

.policy-contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float-circle 15s infinite ease-in-out;
}

.policy-cta-icon {
    width: 80px;
    height: 80px;
    background: var(--emerald-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.35);
}

.policy-cta-icon i {
    font-size: 2.5rem;
    color: white;
}

.policy-contact-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.policy-contact-cta p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.btn-policy-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--gold-gradient);
    color: #000;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-policy-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-policy-contact i {
    transition: transform 0.3s ease;
}

.btn-policy-contact:hover i {
    transform: translateX(5px);
}

/* ========================================
   Responsive Styles for Policy Modern
   ======================================== */
@media (max-width: 992px) {
    .policy-main-title {
        font-size: 2.8rem;
    }

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

    .cooperation-grid-modern {
        grid-template-columns: 1fr;
    }

    .timeline-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .timeline-steps::before {
        display: none;
    }

    .cta-card-modern {
        flex-direction: column;
        text-align: center;
        padding: 50px 40px;
    }

    .cta-content-modern p {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-actions {
        justify-content: center;
    }

    .policy-detail-title {
        font-size: 2.8rem;
    }

    .policy-section-title {
        font-size: 1.7rem;
    }

    .policy-contact-cta {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .policy-main-section {
        padding: 120px 0 80px;
    }

    .policy-main-title {
        font-size: 2.2rem;
    }

    .policy-main-desc {
        font-size: 1rem;
    }

    .policy-card-modern {
        padding: 40px 35px;
    }

    .section-title-modern {
        font-size: 2.2rem;
    }

    .cooperation-card-modern {
        padding: 40px 35px;
    }

    .cooperation-timeline {
        padding: 40px 30px;
    }

    .timeline-steps {
        grid-template-columns: 1fr;
    }

    .cta-card-modern {
        padding: 40px 30px;
    }

    .cta-content-modern h3 {
        font-size: 1.8rem;
    }

    .cta-icon-large {
        width: 100px;
        height: 100px;
    }

    .cta-icon-large i {
        font-size: 2.8rem;
    }

    .policy-detail-hero {
        padding: 120px 0 60px;
    }

    .policy-detail-title {
        font-size: 2.2rem;
    }

    .policy-detail-subtitle {
        font-size: 1rem;
    }

    .policy-content-section {
        padding: 80px 0;
    }

    .policy-section-title {
        font-size: 1.6rem;
    }

    .policy-subsection-title {
        font-size: 1.2rem;
    }

    .policy-intro-box {
        padding: 25px 30px;
    }

    .policy-contact-cta {
        padding: 40px 30px;
    }

    .policy-contact-cta h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .policy-main-title {
        font-size: 1.8rem;
    }

    .policy-main-title br {
        display: none;
    }

    .policy-card-modern {
        padding: 35px 25px;
    }

    .policy-icon-modern {
        width: 70px;
        height: 70px;
    }

    .policy-icon-modern i {
        font-size: 1.8rem;
    }

    .cooperation-number {
        font-size: 3.5rem;
        top: 20px;
        right: 20px;
    }

    .cooperation-icon-modern {
        width: 65px;
        height: 65px;
    }

    .cooperation-icon-modern i {
        font-size: 1.6rem;
    }

    .timeline-title {
        font-size: 1.6rem;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .policy-detail-title {
        font-size: 1.8rem;
    }

    .policy-detail-subtitle {
        font-size: 0.95rem;
    }

    .policy-content-section {
        padding: 60px 0;
    }

    .policy-section {
        margin-bottom: 40px;
    }

    .policy-section-title {
        font-size: 1.4rem;
    }

    .policy-subsection-title {
        font-size: 1.1rem;
    }

    .policy-text {
        font-size: 0.95rem;
    }

    .policy-intro-box {
        padding: 20px 25px;
    }

    .policy-contact-cta {
        padding: 40px 25px;
    }

    .policy-contact-cta h3 {
        font-size: 1.5rem;
    }

    .policy-contact-cta p {
        font-size: 1rem;
    }

    .policy-cta-icon {
        width: 70px;
        height: 70px;
    }

    .policy-cta-icon i {
        font-size: 2rem;
    }
}