/* ================= VARIABLES ================= */
:root {
    --primary-color: #0d2342; /* Deep Blue */
    --secondary-color: #007bff; /* Bright Accent Blue */
    --accent-color: #ff9800; /* Orange Accent */
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease-in-out;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ================= RESET & GENERAL ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2 span {
    color: var(--secondary-color);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-title p {
    color: var(--text-light);
    margin-top: 15px;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
}

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

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

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

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

/* ================= TOPBAR ================= */
.topbar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
}

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

.topbar-left a, .topbar-right a {
    color: #cbd5e1;
    margin-right: 20px;
}

.topbar-left a:hover, .topbar-right a:hover {
    color: var(--white);
}

.topbar-left i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.topbar-right span {
    margin-right: 15px;
    color: #cbd5e1;
}

.topbar-right a {
    margin-right: 10px;
}

/* ================= HEADER & NAV ================= */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.logo-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.logo-text h1 {
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list > li > a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-color);
    position: relative;
    padding: 10px 0;
}

.nav-list > li > a:hover, .nav-list > li > a.active {
    color: var(--secondary-color);
}

.nav-list > li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-list > li > a:hover::after, .nav-list > li > a.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    border-radius: 5px;
    padding: 10px 0;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    font-size: 0.9rem;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--secondary-color);
    padding-left: 25px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    background: none;
    border: none;
    cursor: pointer;
}

/* ================= HERO SECTION ================= */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 35, 66, 0.9), rgba(13, 35, 66, 0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    animation: fadeIn 1s ease-in-out;
}

.hero .badge {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero h2 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h2 span {
    color: var(--accent-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

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

/* ================= FILIERES SECTION ================= */
.filieres {
    background-color: var(--bg-light);
}

.scrolling-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 20px 0;
}

.scrolling-track {
    display: inline-flex;
    gap: 30px;
    animation: scrollCards 25s linear infinite;
}

.scrolling-track:hover {
    animation-play-state: paused;
}

@keyframes scrollCards {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

.card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    width: 320px;
    flex-shrink: 0;
    white-space: normal;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
}

.card-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img img {
    transform: scale(1.1);
}

.card-icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    border: 4px solid var(--white);
    z-index: 2;
}

.card-body {
    padding: 30px 25px;
}

.card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.card-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.read-more {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    color: var(--primary-color);
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* ================= STATS SECTION ================= */
.stats {
    position: relative;
    padding: 50px 0;
    background: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    color: var(--white);
    text-align: center;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 35, 66, 0.85);
}

.stats-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-item h3 {
    font-size: 2.8rem;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ================= EQUIPE SECTION ================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-img {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .team-img img {
    transform: scale(1.05);
}

.team-socials {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    transition: var(--transition);
}

.team-member:hover .team-socials {
    bottom: 0;
}

.team-socials a {
    width: 35px;
    height: 35px;
    background-color: var(--secondary-color);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.team-socials a:hover {
    background-color: var(--primary-color);
}

.team-info {
    padding: 25px;
}

.team-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.team-info span {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* ================= BLOG SECTION ================= */
.blog {
    background-color: var(--bg-light);
}

.blog-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 5px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.blog-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.blog-card {
    width: 320px;
    flex-shrink: 0;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 30px 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-meta i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

.blog-content h3 a:hover {
    color: var(--secondary-color);
}

.blog-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ================= PAGE HEADER ================= */
.page-header {
    position: relative;
    padding: 120px 0;
    color: var(--white);
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 35, 66, 0.9), rgba(13, 35, 66, 0.7));
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.page-header-content h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 15px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.header-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 1rem;
}

.header-meta span i {
    color: var(--accent-color);
    margin-right: 5px;
}

/* ================= BLOG DETAILS ================= */
.blog-details-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.blog-main-content {
    flex: 2;
    min-width: 60%;
}

.blog-main-content .main-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.content-body h3, .content-body h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

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

.content-body h4 {
    font-size: 1.4rem;
}

.content-body p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.8;
}

.quote-box {
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    position: relative;
}

.quote-box i {
    font-size: 2rem;
    color: rgba(0, 123, 255, 0.2);
    position: absolute;
    top: 20px;
    left: 20px;
}

.quote-box p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.quote-box span {
    font-weight: 600;
    color: var(--primary-color);
}

.event-program {
    margin-bottom: 30px;
    padding-left: 20px;
}

.event-program li {
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 2px solid var(--secondary-color);
    font-size: 1.05rem;
}

/* ================= SHARE POST ================= */
.share-post {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 20px;
}

.share-post h4 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--primary-color);
}

.share-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}

.share-btn:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.share-btn.facebook { background-color: #3b5998; }
.share-btn.twitter { background-color: #1da1f2; }
.share-btn.whatsapp { background-color: #25d366; }
.share-btn.linkedin { background-color: #0077b5; }

/* ================= SIDEBAR ================= */
.blog-sidebar {
    flex: 1;
    min-width: 300px;
}

.sidebar-widget {
    background-color: var(--bg-light);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.widget-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

.event-info-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
}

.event-info-list li i {
    width: 30px;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.event-info-list li strong {
    margin-right: 10px;
}

.recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.recent-post:last-child {
    margin-bottom: 0;
}

.recent-post img {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    object-fit: cover;
}

.recent-post h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.recent-post h4 a:hover {
    color: var(--secondary-color);
}

.recent-post span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ================= FOOTER ================= */
.footer {
    background-color: var(--primary-color);
    color: #a0aec0;
    padding-top: 80px;
}

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

.footer h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
}

.footer-logo {
    font-size: 1.8rem;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo i {
    color: var(--secondary-color);
}

.footer-about p {
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.footer-socials a:hover {
    background-color: var(--secondary-color);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

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

.footer-bottom {
    background-color: #08172c;
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom a {
    color: var(--white);
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        padding: 20px 0;
    }

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

    .nav-list > li > a {
        display: block;
        padding: 15px 30px;
        border-bottom: 1px solid #eee;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background-color: var(--bg-light);
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }

    .menu-toggle {
        display: block;
    }

    .hero h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
    
    .hero {
        text-align: center;
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .page-header {
        padding: 80px 0;
    }

    .page-header-content h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .header-meta {
        font-size: 0.85rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .share-post {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* ================= FILIERE DETAILS PAGE ================= */
.filiere-details {
    background-color: var(--white);
}

.details-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.details-sidebar {
    flex: 1;
    min-width: 300px;
}

.details-main {
    flex: 2;
    min-width: 60%;
}

.sidebar-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.sidebar-card:hover {
    transform: translateY(-5px);
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.sidebar-header i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.info-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #ced4da;
}

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

.info-list .label {
    font-weight: 600;
    color: var(--primary-color);
}

.info-list .value {
    color: var(--text-light);
}

.action-card {
    background: var(--primary-color);
    color: var(--white);
}

.action-card h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.action-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 25px;
}

.full-width {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn-outline-dark:hover {
    background: rgba(255, 255, 255, 0.1);
}

.links-card h3 {
    margin-bottom: 20px;
}

.related-links li {
    margin-bottom: 15px;
}

.related-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--white);
    border-radius: 8px;
    font-weight: 500;
}

.related-links a:hover {
    background: var(--secondary-color);
    color: var(--white);
    padding-left: 20px;
}

/* Main Content Styles */
.content-section {
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
}

.rich-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.goal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.goal-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    transition: var(--transition);
}

.goal-item:hover {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.goal-icon i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.career-list {
    margin-top: 20px;
}

.career-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f1f1f1;
}

.career-list li i {
    color: var(--accent-color);
    width: 40px;
    height: 40px;
    background: rgba(255, 152, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

/* CTA SECTION */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.btn-accent:hover {
    background: #e68a00;
}

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

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

@media (max-width: 992px) {
    .details-wrapper,
    .blog-details-wrapper {
        flex-direction: column;
    }
    
    .details-sidebar, .details-main,
    .blog-sidebar, .blog-main-content {
        width: 100%;
        min-width: 100%;
    }
}
