/* CSS Variables */
:root {
    --primary-blue: #0a4d8c;
    --secondary-blue: #1976d2;
    --accent-gold: #d4af37;
    --light-gold: #f0e6d2;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --section-padding: 100px 0;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-light);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

p {
    font-family: 'Open Sans', sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-icon img {
    height: 80px;
    width: auto;
    animation: pulse 1.5s infinite ease-in-out;
}

.preloader-text {
    margin-top: 20px;
    font-size: 18px;
    color: var(--primary-blue);
    font-weight: 600;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--text-light);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-5px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-top {
    background-color: var(--primary-blue);
    color: var(--text-light);
    padding: 8px 0;
    font-size: 14px;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info a {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--light-gold);
}

.language-toggle {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3px;
}

.language-toggle button {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px 12px;
    border-radius: 17px;
    transition: all 0.3s;
}

.language-toggle button.active {
    background-color: var(--accent-gold);
    color: var(--primary-blue);
}

.header-main {
    padding: 15px 0;
}

.header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo h1 {
    font-size: 24px;
    color: var(--primary-blue);
    font-weight: 700;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-blue);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary-blue);
}

nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100%;
    background-color: var(--text-light);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    transition: right 0.3s ease;
    padding: 80px 30px 30px;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

.mobile-menu-nav {
    margin-bottom: 30px;
}

.mobile-menu-nav ul {
    list-style: none;
}

.mobile-menu-nav ul li {
    margin-bottom: 15px;
}

.mobile-menu-nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s;
}

.mobile-menu-nav ul li a:hover {
    color: var(--primary-blue);
}

.mobile-menu-nav ul li a.active {
    color: var(--primary-blue);
}

.mobile-menu-contact {
    margin-top: 20px;
}

.mobile-menu-contact h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.mobile-menu-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
}

.mobile-menu-contact a:hover {
    color: var(--secondary-blue);
}

.mobile-menu-language {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.mobile-menu-language h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.mobile-language-toggle {
    display: flex;
    gap: 10px;
}

.mobile-language-toggle button {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--border-color);
    background: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-language-toggle button.active {
    background-color: var(--primary-blue);
    color: var(--text-light);
    border-color: var(--primary-blue);
}

/* Overlay Background */
.overlay-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay-background.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(10, 77, 140, 0.9), rgba(10, 77, 140, 0.7)), url('https://www.pngmagic.com/webp_images/financial-advisor-website-hero-background_31O.webp') no-repeat center center/cover;
    color: var(--text-light);
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    margin-top: 85px;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-light), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero .company-name {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--light-gold);
}

.hero p {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: #c19b2c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-blue);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(10, 77, 140, 0.9), rgba(10, 77, 140, 0.7)), url('https://www.pngmagic.com/webp_images/financial-advisor-website-hero-background_31O.webp') no-repeat center center/cover;
    color: var(--text-light);
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    margin-top: 85px;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-light), transparent);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header .company-name {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--light-gold);
}

.page-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--light-gold);
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--accent-gold);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    font-size: 18px;
    max-width: 700px;
    margin: 25px auto 0;
    color: #666;
}

/* About Section */
.about-section {
    padding: var(--section-padding);
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #555;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background-color: var(--accent-gold);
    border-radius: 10px;
    z-index: -1;
    opacity: 0.5;
}

/* Our Name Section */
.our-name-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.our-name-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.our-name-text {
    flex: 1;
}

.our-name-text h3 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.our-name-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
}

.our-name-image {
    flex: 1;
    position: relative;
}

.our-name-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.our-name-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background-color: var(--accent-gold);
    border-radius: 10px;
    z-index: -1;
    opacity: 0.5;
}

/* Mission, Vision & Values Section */
.mission-vision-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.mvv-item {
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mvv-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mvv-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-gold);
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: 0;
}

.mvv-item:hover .mvv-icon::before {
    transform: scale(1);
}

.mvv-icon i {
    font-size: 36px;
    color: var(--accent-gold);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.mvv-item:hover .mvv-icon i {
    color: var(--primary-blue);
}

.mvv-item h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.mvv-item h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.mvv-item p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
}

.mvv-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.mvv-item ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

.mvv-item ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 16px;
    top: 0;
}

/* Stats Section */
.stats-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    background-color: var(--text-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 40px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--text-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    background-color: var(--primary-blue);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: scale(0);
    transition: transform 0.5s;
}

.service-card:hover .service-icon::before {
    transform: scale(1);
}

.service-icon i {
    font-size: 45px;
    color: var(--accent-gold);
    transition: transform 0.3s;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.service-content h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
    bottom: -8px;
    left: 0;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 25px;
}

.service-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 14px;
    top: 3px;
}

.service-link {
    color: var(--secondary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
    align-self: flex-start;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link:hover {
    gap: 10px;
    color: var(--primary-blue);
}

/* Process Section */
.process-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 40px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-step::after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-gold);
    font-size: 20px;
    z-index: 1;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.step-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-gold);
    transform: scale(0);
    transition: transform 0.3s;
    z-index: -1;
}

.process-step:hover .step-number::before {
    transform: scale(1);
}

.process-step:hover .step-number {
    color: var(--primary-blue);
}

.process-step h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.process-step p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Team Section */
.team-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background-color: var(--text-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.team-image {
    height: 400px;
    overflow: hidden;
    position: relative;
    background-color: #f5f5f5;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.team-member:hover .team-image img {
    transform: scale(1.03);
}

.team-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    z-index: 1;
}

.team-info {
    padding: 30px 25px;
    position: relative;
}

.team-info::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-info h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-weight: 700;
}

.team-info p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.team-bio {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--primary-blue);
    transition: all 0.3s;
}

.team-social a:hover {
    background-color: var(--primary-blue);
    color: var(--text-light);
    transform: translateY(-3px);
}

/* Testimonial Section */
.testimonial-section {
    padding: var(--section-padding);
    position: relative;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 77, 140, 0.9), rgba(10, 77, 140, 0.8)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') no-repeat center center/cover;
    z-index: -1;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
}

.testimonial-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.testimonial-content p {
    font-size: 18px;
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    margin-bottom: 0;
    color: var(--light-gold);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dot.active {
    background-color: var(--accent-gold);
    transform: scale(1.2);
}

/* Trusted Companies Section */
.trusted-companies-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.trusted-companies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsIDI1NSwgMjU1LCAwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.5;
    z-index: 0;
}

.trusted-companies-slider {
    position: relative;
    overflow: hidden;
    min-height: 100px;
    margin: 50px 0;
    z-index: 1;
    padding: 20px 0 15px 0;
}

.trusted-companies-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

.trusted-company-logo {
    flex: 0 0 auto;
    width: 200px;
    height: 120px;
    margin: 0 20px;
    background-color: var(--text-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 10px rgba(122, 122, 122, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.trusted-company-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 77, 140, 0.05), rgba(212, 175, 55, 0.05));
    z-index: 0;
}

.trusted-company-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.trusted-company-logo img {
    max-width: 80%;
    max-height: 80%;
    z-index: 1;
    position: relative;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.trusted-company-logo:hover img {
    filter: grayscale(0%);
}

.trusted-companies-info {
    text-align: center;
    margin-top: 40px;
    z-index: 1;
    position: relative;
}

.trusted-companies-info p {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.trusted-companies-slider:hover .trusted-companies-track {
    animation-play-state: paused;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    color: var(--primary-blue);
    text-align: center;
    position: relative;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* WeChat Section */
.wechat-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--primary-blue);
    color: var(--text-light);
}

.wechat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.wechat-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.wechat-content p {
    font-size: 18px;
    max-width: 600px;
}

.wechat-qr {
    width: 200px;
    height: 200px;
    background-color: var(--text-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wechat-qr img {
    max-width: 180px;
    max-height: 180px;
}

/* Insights Section */
.insights-section {
    padding: var(--section-padding);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.insight-card {
    background-color: var(--text-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.insight-image {
    height: 200px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.insight-card:hover .insight-image img {
    transform: scale(1.1);
}

.insight-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.insight-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.insight-date {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #777;
    font-size: 14px;
}

.insight-category {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--bg-light);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.insight-content h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.3;
}

.insight-content p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.7;
}

.insight-link {
    color: var(--secondary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.insight-link:hover {
    gap: 12px;
    color: var(--primary-blue);
}

/* Blog Detail Section */
.blog-detail-section {
    padding: var(--section-padding);
}

.blog-detail-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.blog-image {
    height: 400px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 40px;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #777;
    font-size: 14px;
}

.blog-category {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--bg-light);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #777;
    font-size: 14px;
}

.blog-title {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
    line-height: 1.6;
}

.blog-body {
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
}

.blog-body p {
    margin-bottom: 20px;
}

.blog-body h2 {
    font-size: 24px;
    color: var(--primary-blue);
    margin: 30px 0 15px;
}

.blog-body h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin: 25px 0 15px;
}

.blog-body ul, .blog-body ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.blog-body li {
    margin-bottom: 10px;
}

.blog-body blockquote {
    border-left: 4px solid var(--accent-gold);
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #555;
}

.blog-body img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 20px 0;
}

.blog-share {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.blog-share h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.social-share-links {
    display: flex;
    gap: 15px;
}

.social-share-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--primary-blue);
    transition: all 0.3s;
}

.social-share-links a:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.blog-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    max-width: 45%;
}

.blog-nav-link:hover {
    color: var(--secondary-blue);
}

.blog-nav-link.prev {
    flex-direction: row;
}

.blog-nav-link.next {
    flex-direction: row-reverse;
    text-align: right;
}

.blog-nav-link span {
    font-size: 14px;
    color: #777;
    display: block;
    margin-bottom: 5px;
}

.blog-nav-link h4 {
    font-size: 16px;
    line-height: 1.3;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    width: 100%;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s;
    font-family: 'Open Sans', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(10, 77, 140, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-left: 4px solid #28a745;
}

.form-message.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-left: 4px solid #dc3545;
}

.form-message i {
    margin-right: 10px;
}

/* Contact Info */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-gold);
    transform: scale(0);
    transition: transform 0.3s;
    z-index: 0;
}

.contact-card:hover .contact-icon::before {
    transform: scale(1);
}

.contact-icon i {
    font-size: 24px;
    color: var(--accent-gold);
    transition: color 0.3s;
    position: relative;
    z-index: 1;
}

.contact-card:hover .contact-icon i {
    color: var(--primary-blue);
}

.contact-details h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
}

.contact-details h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
    bottom: -8px;
    left: 0;
}

.contact-details p {
    color: #666;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.contact-details a {
    color: var(--secondary-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--primary-blue);
}

/* Map Section */
.map-section {
    padding: var(--section-padding);
}

.map-container {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--text-light);
    text-align: center;
    position: relative;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.newsletter-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}

.newsletter-form button {
    padding: 15px 30px;
    background-color: var(--accent-gold);
    color: var(--text-dark);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-form button:hover {
    background-color: #c19b2c;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: var(--text-light);
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--accent-gold);
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
    bottom: -8px;
    left: 0;
}

.footer-column p {
    margin-bottom: 20px;
    color: #ccc;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.footer-column ul li::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 12px;
    top: 5px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--accent-gold);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 14px;
}

/* Resources Page Styles */
.resources-overview-section {
    padding: var(--section-padding);
}

.resources-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.resources-text {
    flex: 1;
}

.resources-text h3 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.resources-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
}

.resources-image {
    flex: 1;
    position: relative;
}

.resources-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.resources-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background-color: var(--accent-gold);
    border-radius: 10px;
    z-index: -1;
    opacity: 0.5;
}

.resource-categories-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-gold);
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: 0;
}

.category-card:hover .category-icon::before {
    transform: scale(1);
}

.category-icon i {
    font-size: 36px;
    color: var(--accent-gold);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon i {
    color: var(--primary-blue);
}

.category-card h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.category-card h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.category-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Updated Resource Card Styles - Movie-like Layout */
.all-resources-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.resources-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    background-color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.filter-btn:hover {
    background-color: var(--primary-blue);
    color: var(--text-light);
}

.filter-btn.active {
    background-color: var(--primary-blue);
    color: var(--text-light);
}

.resources-cards-container {
    margin-bottom: 30px;
}

.resources-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.resource-card-item {
    background-color: var(--text-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.resource-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.resource-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background-color: var(--primary-blue);
}

.resource-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.resource-card-item:hover .resource-card-image img {
    transform: scale(1.05);
}

.resource-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 77, 140, 0.1), rgba(10, 77, 140, 0.3));
    z-index: 1;
}

.resource-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.resource-card-content h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.3;
}

.resource-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.resource-category {
    display: inline-block;
    padding: 4px 10px;
    background-color: var(--bg-light);
    color: var(--primary-blue);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.resource-date {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #777;
    font-size: 12px;
}

.resource-format {
    display: inline-block;
    padding: 4px 10px;
    background-color: var(--bg-light);
    color: #555;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.resource-card-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.resource-card-content .btn {
    align-self: flex-start;
    padding: 10px 25px;
    font-size: 14px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--text-light);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-link:hover {
    background-color: var(--primary-blue);
    color: var(--text-light);
}

.page-link.active {
    background-color: var(--primary-blue);
    color: var(--text-light);
}

.page-link.next {
    width: auto;
    padding: 0 15px;
    border-radius: 20px;
}

/* Why Ethiopia Page Styles */
.ethiopia-overview-section {
    padding: var(--section-padding);
}

.ethiopia-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.ethiopia-text {
    flex: 1;
}

.ethiopia-text h3 {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.ethiopia-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
}

.ethiopia-image {
    flex: 1;
    position: relative;
}

.ethiopia-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ethiopia-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background-color: var(--accent-gold);
    border-radius: 10px;
    z-index: -1;
    opacity: 0.5;
}

.key-advantages-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.advantage-item {
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.advantage-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-gold);
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: 0;
}

.advantage-item:hover .advantage-icon::before {
    transform: scale(1);
}

.advantage-icon i {
    font-size: 36px;
    color: var(--accent-gold);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.advantage-item:hover .advantage-icon i {
    color: var(--primary-blue);
}

.advantage-item h3 {
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.advantage-item h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.advantage-item p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
}

.key-sectors-section {
    padding: var(--section-padding);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.sector-card {
    background-color: var(--text-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.sector-image {
    height: 200px;
    overflow: hidden;
}

.sector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.sector-card:hover .sector-image img {
    transform: scale(1.1);
}

.sector-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sector-content h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.sector-content h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
    bottom: -8px;
    left: 0;
}

.sector-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.sector-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

.sector-content li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

.sector-content li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-size: 14px;
    top: 3px;
}

.economic-indicators-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.indicators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.indicator-item {
    padding: 30px 20px;
    background-color: var(--text-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.indicator-item:hover {
    transform: translateY(-10px);
}

.indicator-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.indicator-label {
    font-size: 16px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chart-container {
    margin-top: 50px;
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.chart-title {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-align: center;
}

.chart-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.chart-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.investment-incentives-section {
    padding: var(--section-padding);
}

.incentives-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.incentives-list {
    flex: 1;
}

.incentive-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.incentive-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.incentive-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.incentive-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-gold);
    transform: scale(0);
    transition: transform 0.3s;
    z-index: 0;
}

.incentive-item:hover .incentive-icon::before {
    transform: scale(1);
}

.incentive-icon i {
    font-size: 24px;
    color: var(--accent-gold);
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.incentive-item:hover .incentive-icon i {
    color: var(--primary-blue);
}

.incentive-details h3 {
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.incentive-details p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.incentives-image {
    flex: 1;
    position: relative;
}

.incentives-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.success-stories-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.story-card {
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.story-content h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.story-content h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
    bottom: -8px;
    left: 0;
}

.story-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #777;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .hero h2 {
        font-size: 46px;
    }
    
    .page-header h1 {
        font-size: 46px;
    }
    
    .section-title h2 {
        font-size: 38px;
    }
    
    nav ul li {
        margin-left: 15px;
    }
    
    nav ul li a {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .our-name-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 40px;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .our-name-image {
        margin-top: 40px;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero h2 {
        font-size: 42px;
    }
    
    .hero p {
        font-size: 20px;
    }
    
    .page-header h1 {
        font-size: 42px;
    }
    
    .section-title h2 {
        font-size: 34px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    nav ul li {
        margin-left: 12px;
    }
    
    nav ul li a {
        font-size: 14px;
    }
    
    .language-toggle button {
        font-size: 13px;
        padding: 4px 10px;
    }
    
    /* Responsive Styles for Mission, Vision & Values Section */
    .mvv-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Responsive Styles for New Pages */
    .resources-content {
        flex-direction: column;
    }
    
    .resources-image {
        margin-top: 40px;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .ethiopia-content {
        flex-direction: column;
    }
    
    .ethiopia-image {
        margin-top: 40px;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .incentives-content {
        flex-direction: column;
    }
    
    .incentives-image {
        margin-top: 40px;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .indicators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Responsive adjustments for Trusted Companies Section */
    .trusted-company-logo {
        width: 150px;
        height: 90px;
        margin: 0 15px;
    }
    
    .trusted-companies-info p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    
    .header-main {
        padding: 12px 0;
    }
    
    .logo h1 {
        font-size: 18px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        display: none;
    }
    
    .hero {
        padding: 140px 0 100px;
        margin-top: 55px;
    }
    
    .hero h2 {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .hero .company-name {
        font-size: 20px;
    }
    
    .hero p {
        font-size: 18px;
        max-width: 90%;
    }
    
    .page-header {
        padding: 140px 0 100px;
        margin-top: 55px;
    }
    
    .page-header h1 {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .page-header .company-name {
        font-size: 20px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 25px;
        font-size: 15px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-icon {
        font-size: 35px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-image {
        height: 350px;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .insight-card {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .blog-image {
        height: 300px;
    }
    
    .blog-content {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-card {
        align-items: center;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-details h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .wechat-qr {
        width: 200px;
        height: 200px;
    }
    
    .wechat-qr img {
        max-width: 180px;
        max-height: 180px;
    }
    
    .wechat-content h2 {
        font-size: 30px;
    }
    
    .wechat-content p {
        font-size: 16px;
        max-width: 90%;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 20px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .testimonial-content h2 {
        font-size: 32px;
    }
    
    .testimonial-content p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
    
    .author-info h4 {
        font-size: 16px;
    }
    
    .author-info p {
        font-size: 13px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-column h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .footer-column ul li {
        font-size: 14px;
    }
    
    /* Responsive Styles for Mission, Vision & Values Section */
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .mvv-item {
        padding: 30px 20px;
    }
    
    .mvv-icon {
        width: 70px;
        height: 70px;
    }
    
    .mvv-icon i {
        font-size: 30px;
    }
    
    .mvv-item h3 {
        font-size: 22px;
    }
    
    .mvv-item p {
        font-size: 15px;
    }
    
    .mvv-item ul li {
        font-size: 15px;
        padding-left: 25px;
    }
    
    .mvv-item ul li::before {
        font-size: 14px;
    }
    
    /* Responsive Styles for New Pages */
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .resource-card {
        flex-direction: column;
    }
    
    .resource-icon {
        width: 100%;
        height: 80px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .category-card {
        padding: 30px 20px;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
    }
    
    .category-icon i {
        font-size: 30px;
    }
    
    .category-card h3 {
        font-size: 22px;
    }
    
    .category-card p {
        font-size: 15px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .advantage-item {
        padding: 30px 20px;
    }
    
    .advantage-icon {
        width: 70px;
        height: 70px;
    }
    
    .advantage-icon i {
        font-size: 30px;
    }
    
    .advantage-item h3 {
        font-size: 22px;
    }
    
    .advantage-item p {
        font-size: 15px;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .sector-content {
        padding: 25px 20px;
    }
    
    .sector-content h3 {
        font-size: 20px;
    }
    
    .sector-content p {
        font-size: 15px;
    }
    
    .sector-content li {
        font-size: 15px;
        padding-left: 20px;
    }
    
    .sector-content li::before {
        font-size: 12px;
        top: 2px;
    }
    
    .indicators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .indicator-item {
        padding: 20px 15px;
    }
    
    .indicator-number {
        font-size: 32px;
    }
    
    .chart-container {
        padding: 20px;
    }
    
    .chart-placeholder {
        height: 250px;
    }
    
    .incentive-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .incentive-details h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .story-card {
        padding: 25px 20px;
    }
    
    .story-content h3 {
        font-size: 20px;
    }
    
    .story-content p {
        font-size: 15px;
    }
    
    .story-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Responsive adjustments for Trusted Companies Section */
    .trusted-company-logo {
        width: 120px;
        height: 70px;
        margin: 0 10px;
    }
    
    .trusted-companies-info p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero .company-name {
        font-size: 18px;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .page-header {
        padding: 120px 0 80px;
    }
    
    .page-header h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .page-header .company-name {
        font-size: 18px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .section-title h2::after {
        width: 50px;
    }
    
    .section-title p {
        font-size: 15px;
    }
    
    .about-text h3 {
        font-size: 24px;
    }
    
    .about-text p {
        font-size: 15px;
    }
    
    .our-name-text h3 {
        font-size: 24px;
    }
    
    .our-name-text p {
        font-size: 15px;
    }
    
    .about-image {
        max-width: 100%;
    }
    
    .our-name-image {
        max-width: 100%;
    }
    
    .about-image::before {
        width: 100px;
        height: 100px;
        top: -15px;
        right: -15px;
    }
    
    .our-name-image::before {
        width: 100px;
        height: 100px;
        top: -15px;
        left: -15px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-icon {
        font-size: 30px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .service-icon {
        height: 150px;
    }
    
    .service-icon i {
        font-size: 35px;
    }
    
    .service-content {
        padding: 25px 20px;
    }
    
    .service-content h3 {
        font-size: 20px;
    }
    
    .service-content p {
        font-size: 15px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-image {
        height: 320px;
    }
    
    .insight-card {
        max-width: 100%;
    }
    
    .insight-content {
        padding: 25px 20px;
    }
    
    .blog-image {
        height: 250px;
    }
    
    .blog-content {
        padding: 25px 15px;
    }
    
    .blog-title {
        font-size: 22px;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .blog-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .blog-nav-link {
        max-width: 100%;
    }
    
    .map-container {
        height: 350px;
    }
    
    .wechat-qr {
        width: 150px;
        height: 150px;
    }
    
    .wechat-qr img {
        max-width: 130px;
        max-height: 130px;
    }
    
    .wechat-content p {
        font-size: 15px;
    }
    
    .newsletter-content h2 {
        font-size: 32px;
    }
    
    .newsletter-content p {
        font-size: 16px;
    }
    
    .testimonial-content h2 {
        font-size: 28px;
    }
    
    .testimonial-content p {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
    
    .author-info h4 {
        font-size: 16px;
    }
    
    .author-info p {
        font-size: 13px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 15px;
    }
    
    .btn {
        max-width: 250px;
        font-size: 14px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-column {
        margin-bottom: 10px;
    }
    
    .footer-column h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-column p {
        font-size: 14px;
    }
    
    .footer-column ul li {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
    }
    
    /* Responsive Styles for Mission, Vision & Values Section */
    .mvv-item {
        padding: 25px 20px;
    }
    
    .mvv-icon {
        width: 60px;
        height: 60px;
    }
    
    .mvv-icon i {
        font-size: 26px;
    }
    
    .mvv-item h3 {
        font-size: 20px;
    }
    
    .mvv-item p {
        font-size: 14px;
    }
    
    .mvv-item ul li {
        font-size: 14px;
        padding-left: 25px;
        margin-bottom: 12px;
    }
    
    .mvv-item ul li::before {
        font-size: 14px;
    }
    
    /* Responsive Styles for New Pages */
    .resources-text h3 {
        font-size: 24px;
    }
    
    .resources-text p {
        font-size: 15px;
    }
    
    .resources-image {
        max-width: 100%;
    }
    
    .ethiopia-text h3 {
        font-size: 24px;
    }
    
    .ethiopia-text p {
        font-size: 15px;
    }
    
    .ethiopia-image {
        max-width: 100%;
    }
    
    .resources-image::before,
    .ethiopia-image::before,
    .incentives-image::before {
        width: 100px;
        height: 100px;
        top: -15px;
        right: -15px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-card {
        padding: 25px 20px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-icon i {
        font-size: 26px;
    }
    
    .category-card h3 {
        font-size: 20px;
    }
    
    .category-card p {
        font-size: 14px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .advantage-item {
        padding: 25px 20px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 26px;
    }
    
    .advantage-item h3 {
        font-size: 20px;
    }
    
    .advantage-item p {
        font-size: 14px;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sector-content {
        padding: 25px 15px;
    }
    
    .sector-content h3 {
        font-size: 18px;
    }
    
    .sector-content p {
        font-size: 14px;
    }
    
    .sector-content li {
        font-size: 14px;
        padding-left: 20px;
    }
    
    .sector-content li::before {
        font-size: 12px;
        top: 2px;
    }
    
    .indicators-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .indicator-item {
        padding: 20px 15px;
    }
    
    .indicator-number {
        font-size: 28px;
    }
    
    .indicator-label {
        font-size: 14px;
    }
    
    .chart-container {
        padding: 15px;
    }
    
    .chart-title {
        font-size: 18px;
    }
    
    .chart-placeholder {
        height: 200px;
    }
    
    .incentive-item {
        padding: 20px 15px;
    }
    
    .incentive-icon {
        width: 50px;
        height: 50px;
    }
    
    .incentive-icon i {
        font-size: 20px;
    }
    
    .incentive-details h3 {
        font-size: 18px;
    }
    
    .incentive-details p {
        font-size: 14px;
    }
    
    .incentives-image {
        max-width: 100%;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .story-card {
        padding: 25px 15px;
    }
    
    .story-content h3 {
        font-size: 18px;
    }
    
    .story-content p {
        font-size: 14px;
    }
    
    .story-meta {
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .hero h2 {
        font-size: 24px;
    }
    
    .hero .company-name {
        font-size: 16px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
    
    .page-header .company-name {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .about-text h3 {
        font-size: 22px;
    }
    
    .our-name-text h3 {
        font-size: 22px;
    }
    
    .testimonial-content h2 {
        font-size: 24px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .wechat-content h2 {
        font-size: 26px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 20px;
    }
}