:root {
    --primary-color: #296273;
    --secondary-color: #3eb24d;
    --light-blue: #c8e9f7;
    --dark-green: #2f434e;
    --text-color: #232323;
    --white: #ffffff;
    --gray: #b0b0b0;
    
    /* Additional brand colors for design enhancement */
    --gray-blue: #456776;
    --darker-blue: #163E80;
    --green-blue: #296273;
}

/* Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Prevent body scroll when popup is open */
body.popup-open {
    overflow: hidden;
}
p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    opacity: 0.9;
}

p strong {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    opacity: 1;
    font-weight: 600;
}
.dark p {
    color: var(--white);
}
.dark .section-title {
    color: var(--white);
    font-weight: bold;
}
.dark a {
    color: var(--secondary-color);
}
.hide {
    display: none;
}
/* Header Styles */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--dark-green);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar {
    padding: 1rem 0;
    background: var(--white);
}
.navbar-toggler {
    background-color: var(--primary-color) !important;
}
.navbar-brand {
    padding: 0;
    margin-right: 2rem;
}
.navbar-actions {
    display: flex;
}
.navbar-nav .nav-item ul.submenu {
    list-style: none;
}

.navbar-brand .logo {
    max-height: 50px;
    width: auto;
    border-radius: 4px;
}
.site-footer .logo {
    border-radius: 4px;
}

.navbar-dark .navbar-nav {
    margin: 0 auto;
}

/* Main Navigation */
.navbar-dark .navbar-nav .nav-link {
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}
.navbar-dark .navbar-nav .nav-item.highlight a {
    background: var(--secondary-color);
    border-radius: 4px;
    margin-left: 1rem;
    color: var(--white);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--secondary-color);
}

.navbar-dark .navbar-nav .nav-link.active {
    color: var(--secondary-color);
}
.navbar-dark .navbar-nav .highlight .nav-link.active {
    text-decoration: underline;
    color: var(--white);
}

/* Submenu Styles */
.navbar-dark .navbar-nav .nav-item {
    position: relative;
}

.navbar-dark .navbar-nav .nav-item.has-submenu > .nav-link::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 0.5rem;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.navbar-dark .navbar-nav .nav-item.has-submenu:hover > .nav-link::after {
    transform: rotate(180deg);
}

.navbar-dark .navbar-nav .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-green);
    min-width: 220px;
    padding: 0;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar-dark .navbar-nav .nav-item:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-dark .navbar-nav .submenu .nav-link {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}
@media (min-width: 992px) {
    .navbar-dark .navbar-nav .submenu .nav-link { 
        color: var(--white);
    }
}
.navbar-dark .navbar-nav .submenu .nav-link.active,
.navbar-dark .navbar-nav .submenu .nav-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.nav-link:focus-visible {
    box-shadow: 0 0 0 1px rgb(255 255 255 / 100%); 
    outline: -webkit-focus-ring-color auto 1px;
}

/* Responsive Navigation */
@media (max-width: 991px) {
    .navbar-dark .navbar-nav {
        margin: 0.5rem 0;
    }
    .navbar-dark .navbar-nav .nav-item.highlight a {
        margin-left: 0;
    }

    .navbar-dark .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .navbar-dark .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-dark .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }

    .navbar-dark .navbar-nav .nav-item.has-submenu > .nav-link::after {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
    }

    .navbar-dark .navbar-nav .nav-item.has-submenu.show > .nav-link::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .navbar-dark .navbar-nav .submenu {
        position: static;
        background: rgba(255,255,255,0.05);
        box-shadow: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin-left: 1rem;
    }

    .navbar-dark .navbar-nav .nav-item.has-submenu.show > .submenu {
        display: block;
    }

    .navbar-dark .navbar-nav .submenu .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .navbar-actions {
        margin: 0.5rem 0;
        justify-content: flex-start;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 0.5rem;
        gap: 20px;
    }

    .search-container {
        width: 100%;
        margin: 0.5rem 0;
    }

    .search-form {
        position: static;
        width: 100%;
        background: transparent;
        padding: 0;
        box-shadow: none;
        display: block;
    }

    .search-form .input-group {
        width: 100%;
    }

    .search-form .form-control {
        background: rgba(255,255,255,0.1);
        border: none;
        color: var(--primary-color);
        border: 1px solid var(--primary-color);
    }

    .search-form .btn-primary {
        background: var(--primary-color) !important;
        border: none;
    }

    .search-toggle {
        display: none;
    }

    .linkedin-link {
        margin: 0.5rem 0;
    }
}

/* Search Styles */
.search-container {
    position: relative;
    margin-right: 1rem;
}

.search-toggle {
    color: var(--primary-color);
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.search-toggle:hover,
.search-toggle:focus {
    color: var(--secondary-color);
}

.search-toggle:focus {
    box-shadow: none;
}

.search-form {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: var(--white);
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
}

.search-form.active {
    display: block;
}

.search-form .input-group {
    width: 100%;
}

.search-form .form-control {
    border-right: none;
}

.search-form .btn-primary {
    background-color: var(--primary-color) !important ;
    border-color: var(--primary-color);
    color: var(--white);
}
.search-form .btn-primary:focus,
.search-form .btn-primary:hover {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

/* Responsive Search */
@media (max-width: 991px) {
    .search-container {
        width: 100%;
        margin: 0.5rem 0;
        order: 2;
    }

    .search-toggle {
        display: none;
    }

    .search-form {
        position: static;
        width: 100%;
        background: transparent;
        padding: 0;
        box-shadow: none;
        display: block;
    }

    .search-form .input-group {
        width: 100%;
    }

    .search-form .btn-primary {
        background: var(--primary-color);
        border: none;
    }

    .navbar-actions {
        flex-direction: column;
        width: 100%;
        margin: 0.5rem 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 0.5rem;
    }

    .linkedin-link {
        margin: 0.5rem 0;
        order: 1;
    }
}

/* LinkedIn Link */
.linkedin-link,
.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    margin-bottom: 0.75rem;
}
header .linkedin-link {
    margin-bottom: 0;
}

.linkedin-link:hover,
.contact-link:hover {
    opacity: 1;
}

.linkedin-link i,
.contact-link i {
    font-size: 1.2rem;
    width: 1.2rem;
    text-align: center;
}

/* Footer Navigation */
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

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

.footer-nav ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-nav ul li a:hover,
.footer-nav ul li a.active {
    opacity: 1;
}
.footer-nav ul li a.active {
    text-decoration: underline;
}

/* Teaser Section */
.teaser-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-green) 100%);
    padding: 4rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.teaser-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
}

.teaser-content {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
}

.teaser-text {
    flex: 1;
}

.teaser-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.teaser-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.teaser-logos {
    display: flex;
    gap: 2rem;
    align-items: center;
}
span.subheader {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: block;
    font-weight: bold;
}

.logo-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}
/*
.logo-item img {
    max-height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}
*/

@media (max-width: 768px) {
    .teaser-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .teaser-text h2 {
        font-size: 2rem;
    }

    .teaser-logos {
        flex-direction: column;
        gap: 1rem;
    }

    .logo-item {
        width: 100%;
        max-width: 200px;
    }
}

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

.site-footer a {
    color: var(--white);
    text-decoration: none;
}

.site-footer h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom .col-12 {
    display: flex;
    justify-content: space-between;
}

.footer-legal a {
    margin-right: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .navbar-brand .logo {
        max-height: 40px;
    }
    
    .teaser-section {
        text-align: center;
    }
}

/* Modern Hero Section - 2025 Design */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-bottom: 120px; /* Space for half of highlight box */
    margin-top: -76px; /* Compensate for header height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(41, 98, 115, 0.6) 0%, rgba(0, 0, 0, 0.75) 100%);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1020px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.teaser-subtitle {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--light-blue);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 0 4rem;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Highlight Box */
.highlight-box {
    position: absolute;
    bottom: -1rem; 
    left: 0;
    width: 100%;
    z-index: 3;
}

.highlight-box .container {
    max-width: 1100px; /* Narrower than regular container */
}

.highlight-content {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-text {
    flex: 1;
}

.highlight-text h2 {
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--dark);
    margin: 0;
    font-weight: 600;
}

.highlight-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.highlight-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

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

.highlight-cta:hover i {
    transform: translateX(4px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .highlight-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .highlight-text h2 {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: calc(100vh - 60px);
        padding-bottom: 80px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .teaser-subtitle {
        font-size: 1rem;
        padding: 0 2rem;
    }

    .highlight-box {
        bottom: -20px;
    }

    .highlight-box .container {
        padding: 0 1rem;
    }

    .highlight-content {
        padding: 1.5rem;
    }

    .highlight-text h2 {
        font-size: 1.25rem;
        margin-bottom: 0rem;
    }
}

/* Highlight Panel */
.highlight-panel {
    position: absolute;
    bottom: -120px; /* Half height of the panel */
    left: 0;
    width: 100%;
    z-index: 10;
    height: 240px; /* Fixed height for the panel */
}

.highlight-panel-bg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1260px;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.95) 100%
    );
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.highlight-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 3rem;
    max-width: 1160px;
    margin: 0 auto;
    height: 100%;
}

.highlight-text {
    flex: 1;
}

.highlight-text h2 {
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--dark);
    margin-bottom: 0rem;
    font-weight: 600;
}

.highlight-features {
    display: flex;
    gap: 2.5rem;
}

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

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    border-radius: 16px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
    transition: transform 0.3s ease;
}

.feature:hover .feature-icon {
    transform: translateY(-5px);
    background: var(--secondary-color);
}

.feature:hover .feature-icon::before {
    transform: translateX(100%);
}

.feature span {
    font-weight: 500;
    color: var(--dark);
    font-size: 1.1rem;
}

.highlight-action {
    flex-shrink: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(62, 178, 77, 0.3);
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(62, 178, 77, 0.4);
}

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

.cta-button:hover i {
    transform: translateX(4px);
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .highlight-panel-bg {
        width: calc(100% - 4rem);
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 3.25rem;
    }

    .highlight-panel {
        position: relative;
        bottom: -60px;
        height: auto;
    }

    .highlight-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 1.5rem 1.5rem;
    }

    .highlight-features {
        justify-content: center;
    }

    .hero-section {
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: calc(100vh - 60px);
        padding-bottom: 40px;
    }

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

    .hero-content .teaser-subtitle {
        font-size: 1rem;
        padding: 0 2rem;
    }

    .highlight-panel {
        bottom: -40px;
    }

    .highlight-panel-bg {
        width: calc(100% - 2rem);
        border-radius: 16px;
    }

    .highlight-features {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .feature {
        justify-content: center;
    }

    .highlight-text h2 {
        font-size: 1.5rem;
        margin-bottom: 0rem;
    }
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    background: linear-gradient(120deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 0 120px;
    overflow: hidden;
}

.hero-content-wrapper {
    position: relative;
    padding-bottom: 40px;
}

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

.hero-text-content {
    padding-right: 20px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--dark);
    opacity: 0.8;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 1rem;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-badges .badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    font-weight: 500;
    color: var(--dark);
}

.hero-badges .badge i {
    color: var(--primary-color);
}

.hero-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.hero-image .main-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.floating-card {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 1.25rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card .card-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card .card-icon i {
    font-size: 24px;
    color: white;
}

.floating-card .card-text {
    display: flex;
    flex-direction: column;
}

.floating-card .number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.floating-card .label {
    font-size: 0.875rem;
    color: var(--dark);
    opacity: 0.8;
}

/* Promotion Panel Styles */
.promotion-panel {
    background: var(--primary-color);
    padding: 2rem 0;
    margin-top: 2rem;
}

.promotion-panel .panel-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.panel-text {
    flex: 2;
}

.panel-text h2 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

    .panel-features {
    flex: 1;
    display: flex;
    gap: 2rem;
    }

    .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.feature i {
    font-size: 1.25rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-stats, .hero-badges {
        justify-content: center;
    }
    
    .promotion-panel .panel-content {
        flex-direction: column;
        text-align: center;
    }
    
    .panel-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .panel-features {
        flex-direction: column;
        align-items: center;
    }
}

/* Bottom Panel */
.bottom-panel {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 2.5rem 0;
    width: 100%;
    border-top: 4px solid var(--secondary-color);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
}

.bottom-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(62, 178, 77, 0.05) 0%,
        rgba(41, 98, 115, 0.05) 100%);
    z-index: 0;
}

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

.panel-title {
    font-size: 1.8rem;
    color: var(--dark-green);
    margin-bottom: 2rem;
    line-height: 1.4;
    font-weight: 600;
}

.panel-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(41, 98, 115, 0.2);
    cursor: pointer;
    border: none;
    outline: none;
}

.panel-cta i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.panel-cta:hover,
.panel-cta:focus {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(62, 178, 77, 0.3);
    color: var(--white);
    text-decoration: none;
}

.panel-cta:hover i,
.panel-cta:focus i {
    transform: translateX(4px);
}

.panel-cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(62, 178, 77, 0.2);
}

@media (max-width: 991px) {
    .hero-section {
        min-height: 100vh;
        height: auto;
    }

    .hero-content {
        padding: 6rem 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .bottom-panel {
        padding: 2rem 0;
    }

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

@media (max-width: 767px) {
    .hero-content {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2.1rem;
    }
    .btn-secondary-enhanced {
        margin-left: 0 !important;
    }
    .btn-primary-enhanced {
        margin-left: 0 !important;
    }

    .bottom-panel {
        padding: 1.5rem 0;
    }

    .panel-title {
        font-size: 1.4rem;
    }
}

/* Second Teaser Section */
.second-teaser {
    padding: 6rem 0;
    background: var(--white);
    overflow: hidden;
}

.second-teaser .container {
    position: relative;
}

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

.teaser-image-wrapper {
    position: relative;
    padding: 2rem;
}

.teaser-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    border-radius: 20px;
    transform: rotate(-3deg);
    z-index: 1;
}

.teaser-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    border-radius: 20px;
    opacity: 0.1;
    transform: rotate(3deg);
    z-index: 0;
}

.teaser-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 500px !important;
    object-fit: cover;
    border-radius: 15px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease;
}

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

.teaser-text-content {
    padding-right: 2rem;
}

.teaser-subtitle {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(62, 178, 77, 0.1);
    border-radius: 4px;
}

.light-blue .teaser-subtitle {
    color: #212529;
    background: rgb(62 178 77 / 50%);
}

.teaser-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}

.teaser-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.teaser-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(41, 98, 115, 0.2);
}

.teaser-cta i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}
.teaser-cta svg {
    width: 1.1rem;
    transition: transform 0.3s ease;
}
.second-teaser-content .teaser-cta svg {
    fill: var(--white);
}
.second-teaser-content .teaser-cta.secondary svg {
    fill: var(--secondary-color);
}

.teaser-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(62, 178, 77, 0.3);
    color: var(--white);
    text-decoration: none;
}

.teaser-cta:hover i {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .second-teaser {
        padding: 4rem 0;
    }

    .second-teaser-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .teaser-text-content {
        padding-right: 0;
        text-align: center;
        order: -1; /* Move text above image */
    }

    .teaser-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }

    .teaser-title {
        font-size: 2.4rem;
    }

    .teaser-cta {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .second-teaser {
        padding: 3rem 0;
    }

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

    .teaser-image {
        height: 300px;
    }

    .teaser-image-wrapper {
        max-width: 100%;
        margin-bottom: 4rem;
    }
    .teaser-image-wrapper img {
        width: 100%;
        height: auto;
    }

    .teaser-description {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .second-teaser {
        padding: 2rem 0;
    }

    .teaser-title {
        font-size: 1.8rem;
    }

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

    .teaser-image {
        height: 250px;
    }
    .footer-bottom {
        margin-top: 1rem;
    }
    .footer-bottom .col-12 {
        flex-direction: column;
    }
}

/* Anniversary Section Styles */
.anniversary-section {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.anniversary-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(var(--primary-color) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
}

.second-teaser-content.reverse {
    flex-direction: row-reverse;
}

.anniversary-image {
    position: relative;
}

.anniversary-badge {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(62, 178, 77, 0.2);
    z-index: 10;
    transform: rotate(10deg);
    transition: transform 0.3s ease;
}

.anniversary-badge:hover {
    transform: rotate(0deg) scale(1.1);
}

.anniversary-badge .years {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.anniversary-badge .text {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 5px;
}

.anniversary-badge .dates {
    font-size: 0.8rem;
    opacity: 0.9;
}

.anniversary-cta {
    margin-top: 2rem;
}

.anniversary-cta .teaser-cta {
    background: var(--secondary-color);
}

.anniversary-cta .teaser-cta:hover {
    background: var(--primary-color);
}

@media (max-width: 991px) {
    .second-teaser-content.reverse {
        flex-direction: column;
    }

    .anniversary-badge {
        width: 120px;
        height: 120px;
        top: -20px;
        right: -20px;
    }

    .anniversary-badge .years {
        font-size: 2.5rem;
    }

    .anniversary-badge .text {
        font-size: 0.8rem;
    }

    .anniversary-badge .dates {
        font-size: 0.7rem;
    }
}

/* Experts Section Styles */
.experts-section {
    background: var(--white);
}

.experts-image {
    position: relative;
}

.expert-stats {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.stat-bubble {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(62, 178, 77, 0.2);
    transition: transform 0.3s ease;
    min-width: 140px;
}

.stat-bubble:hover {
    transform: translateY(-5px);
}

.stat-bubble .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-bubble .label {
    display: block;
    font-size: 0.9rem;
    line-height: 1.2;
    opacity: 0.9;
}

.expert-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.teaser-cta.secondary {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.teaser-cta.secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.teaser-cta.secondary i {
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .expert-stats {
        position: relative;
        bottom: 0;
        margin-top: 2rem;
    }

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

    .teaser-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .expert-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-bubble {
        width: 100%;
        max-width: 200px;
    }
}

/* Story Section Styles */
.story-section {
    padding: 5rem 0;
    background: var(--white);
}

.story-header {
    margin: 0 auto 4rem;
    text-align: center;
}

.story-header h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.author-image {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--secondary-color) !important;
    flex-shrink: 0;
}

.author-details {
    text-align: left;
    padding-top: 0.5rem;
}

.author-details h3 {
    font-size: 1.4rem;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

.author-details p {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.experience-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.story-content {
    margin: 0 auto;
}

.story-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.story-highlight i {
    font-size: 2rem;
    opacity: 0.2;
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.story-highlight p {
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    padding-left: 3rem;
    color: var(--white);
}

.story-highlight .quote-author {
    font-size: 1rem;
    font-style: normal;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    text-align: right;
    padding-right: 2rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-text h3 {
    color: var(--dark-green);
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    opacity: 0.9;
}

.key-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 800px;
    text-align: center;
}

.key-stats .stat-item {
    background: var(--light-blue);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.key-stats .stat-item:hover {
    transform: translateY(-5px);
}

.key-stats .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.key-stats .label {
    display: block;
    font-size: 1rem;
    color: var(--dark-green);
    line-height: 1.3;
}

.author-bio {
    margin: 4rem auto 0;
    padding: 2rem;
    background: var(--light-blue);
    border-radius: 10px;
}

.author-bio h4 {
    color: var(--dark-green);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.author-bio p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .story-header h2 {
        font-size: 2rem;
    }

    .story-highlight p {
        font-size: 1.2rem;
    }

    .key-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .story-section {
        padding: 3rem 0;
    }

    .author-info {
        flex-direction: row;
        padding: 0 1rem;
    }

    .author-details {
        text-align: left;
    }

    .story-highlight {
        padding: 2rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .key-stats {
        grid-template-columns: 1fr;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .author-bio {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .story-highlight i {
        font-size: 1.5rem;
        top: 1.5rem;
        left: 1.5rem;
    }

    .story-highlight p {
        font-size: 1.1rem;
        padding-left: 0;
        margin-top: 2rem;
    }

    .story-text h3 {
        font-size: 1.5rem;
    }
}

/* Author Signature Styles */
.author-signature {
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.author-signature .author-info {
    text-align: left;
}

.author-signature .author-info h3 {
    font-size: 1.2rem;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

.author-signature .author-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Content Teaser Styles */
.content-teaser {
    padding: 4rem 0;
    background: var(--white);
}

.content-teaser.green {
    background: rgba(62, 178, 77, 0.1);
}

.content-teaser .content-block {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 2rem;
    border-radius: 10px;
}

.content-teaser.dark {
    background: var(--dark-green);
    color: var(--white);
}

.content-teaser .teaser-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(62, 178, 77, 0.1);
    border-radius: 4px;
}

.content-teaser.dark .teaser-subtitle {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.content-teaser h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.content-teaser.dark h2 {
    color: var(--white);
}

.content-teaser p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}
.content-teaser p.question-text {
    margin-bottom: 0rem;
}

.content-teaser.dark p {
    color: var(--white);
    opacity: 0.9;
}


/* Stats Styles */
.teaser-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.teaser-stats .stat {
    text-align: center;
    flex: 1;
}

.teaser-stats .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.content-teaser.dark .teaser-stats .number {
    color: var(--white);
}

.teaser-stats .label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

@media (max-width: 767px) {
    .content-teaser h2 {
        font-size: 2rem;
    }

    .testimonial-content {
        padding: 1.5rem;
    }

    .testimonial-content .quote {
        font-size: 1.1rem;
    }

    .teaser-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .teaser-stats .stat {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
    }
}

/* Content Block Testimonial Styles */
.content-block.testimonial {
    background: var(--light-blue);
    padding: 3rem;
    border-radius: 15px;
}

.expert-quote {
    margin: 2rem 0;
    padding: 0;
    border: none;
    position: relative;
}

.expert-quote p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--dark-green);
    font-style: italic;
    margin: 0;
    padding-left: 2rem;
    position: relative;
}

.expert-quote p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.5;
    font-family: Georgia, serif;
}

.expert-info {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
}

.expert-info h3 {
    color: var(--dark-green);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.expert-info p {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.expert-credentials {
    font-style: italic;
    margin-top: 1rem;
}

@media (max-width: 767px) {
    .content-block.testimonial {
        padding: 1.5rem;
    }

    .expert-quote p {
        font-size: 1.1rem;
    }
}

/* Governance Teasers */
.governance-teaser {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.governance-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(41, 98, 115, 0.05) 0%, rgba(62, 178, 77, 0.05) 100%);
}

.governance-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.governance-header .section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 25px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.governance-header h2 {
    font-size: 2.8rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}

.governance-teaser .governance-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.committee-member {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.committee-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.committee-member::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 6rem;
    opacity: 0.1;
    transition: all 0.3s ease;
    color: var(--secondary-color);
}

.committee-member:hover::after {
    opacity: 0.3;
    transform: scale(1.1);
}

.committee-member.chair::after {
    content: '\f521';  /* chair icon */
}

.committee-member.member::after {
    content: '\f0c0';  /* users icon */
}

.committee-member.student::after {
    content: '\f19d';  /* graduation-cap icon */
}

.committee-member.ex-officio::after {
    content: '\f19c';  /* university icon */
}

.committee-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.committee-member:hover::before {
    opacity: 1;
}

.member-role {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.member-name {
    font-size: 1.4rem;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

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

.member-country {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Secretariat Teaser */
.secretariat-teaser {
    padding: 6rem 0;
    background: var(--dark-green);
    color: var(--white);
    position: relative;
}

.secretariat-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.team-member {
    text-align: center;
    position: relative;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    position: relative;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
}

.team-photo img {
    width: 100%;
    height: 100% !important;
    border-radius: 50% !important;
    object-fit: cover;
}

.team-info h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.team-info .position {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.team-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-contact:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: var(--white);
}

@media (max-width: 991px) {
    .committee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .governance-header h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 767px) {
    .committee-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .governance-header h2 {
        font-size: 2rem;
    }
    
    .governance-teaser {
        padding: 4rem 0;
    }
    
    .secretariat-teaser {
        padding: 4rem 0;
    }
}

/* Documents Teaser Section */
.documents-teaser {
    padding: 4rem 0;
}
.light-blue {
    background: var(--light-blue);
}

.documents-header {
    position: relative;
    margin-bottom: 3rem;
}

.documents-header h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.documents-header .lead {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.document-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.document-link-wrapper {
    padding: 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.document-icon {
    min-width: 60px;
    width: 60px;
    height: 60px;
    background: rgba(62, 178, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0;
}

.document-card:hover .document-icon {
    background: var(--secondary-color);
}

.document-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.document-card:hover .document-icon i {
    color: var(--white);
}

.document-title {
    color: var(--dark-green);
    font-size: 1rem;
    line-height: 1.4;
    text-align: left;
    transition: color 0.3s ease;
}

.document-card:hover .document-title {
    color: var(--secondary-color);
}

@media (max-width: 1199px) {
    .documents-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .documents-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .documents-teaser {
        padding: 3rem 0;
    }
    
    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .documents-header h2 {
        font-size: 2rem;
    }
    
    .document-link-wrapper {
        padding: 1rem;
    }

    .document-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .document-icon i {
        font-size: 1rem;
    }

    .document-title {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .documents-grid {
        grid-template-columns: 1fr;
    }
}

/* Key Questions Grid */
.key-questions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.question-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(62, 178, 77, 0.2);
    position: relative;
    overflow: hidden;
}

.question-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.question-card:hover {
    box-shadow: 0 20px 40px rgba(62, 178, 77, 0.15);
}

.question-card:hover::before {
    opacity: 0.03;
}

.question-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.question-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: var(--secondary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.question-icon i {
    font-size: 1.5rem;
    color: var(--white);
    transition: all 0.3s ease;
}
.question-icon svg {
    fill: var(--white);
    width: 1.5rem;
}

.question-text-content {
    flex: 1;
}

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

.question-text {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
}

/* Webinar Section */
.webinar-info {
    margin-top: 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-green) 100%);
    border-radius: 24px;
    padding: 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.webinar-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
}

.webinar-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.webinar-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.webinar-header h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin: 0;
}

.webinar-content {
    position: relative;
    color: var(--white);
}

.webinar-content p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.webinar-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.webinar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.webinar-link.primary {
    background: var(--secondary-color);
    color: var(--white);
}

.webinar-link.primary:hover {
    background: #45c656;
    transform: translateY(-2px);
}

.webinar-link.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.webinar-link.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.webinar-link i {
    font-size: 1.25rem;
}

@media (max-width: 991px) {
    .key-questions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .webinar-info {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .key-questions-grid {
        grid-template-columns: 1fr;
    }

    .question-card {
        padding: 1.5rem;
    }

    .question-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .question-icon i {
        font-size: 1.25rem;
    }

    .webinar-info {
        padding: 2rem;
        margin: 2rem -1rem;
    }

    .webinar-header {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }

    .webinar-icon {
        width: 48px;
        height: 48px;
    }

    .webinar-icon i {
        font-size: 1.25rem;
    }

    .webinar-header h3 {
        font-size: 1.5rem;
    }

    .webinar-links {
        flex-direction: column;
    }

    .webinar-link {
        justify-content: center;
    }
}
/*Ivana*/
/* Content Teaser Styles */
.content-teaser {
    padding: 5rem 0;
    background: var(--light-blue);
}

.content-teaser.light {
    background: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.content-teaser.light .content-block {
    background: var(--light-blue);
}

.content-block:hover {
    transform: translateY(-5px);
}

.content-block h3 {
    font-size: 1.4rem;
}

.content-block p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* List Teaser Styles */
.list-teaser {
    padding: 5rem 0;
    background: var(--white);
}

.list-header {
    text-align: center;
    margin-bottom: 3rem;
}

.list-header h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.list-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.9;
}

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

.list-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--light-blue);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.list-item:hover {
    transform: translateY(-5px);
}

.list-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    width: 40px;
    text-align: center;
}

.item-content h3 {
    color: var(--dark-green);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.item-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
}

/* Bio Teaser Styles */
.bio-teaser {
    padding: 5rem 0;
    background: var(--light-blue);
}

.bio-header {
    text-align: center;
    margin-bottom: 3rem;
}

.bio-header h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
}

.bio-details {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.bio-image {
    flex-shrink: 0;
}

.bio-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

.bio-text h3 {
    font-size: 1.8rem;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

.bio-title {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.bio-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.bio-links {
    display: flex;
    gap: 1rem;
}

.bio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--light-blue);
    color: var(--dark-green);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.bio-link:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .bio-details {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem;
    }

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

@media (max-width: 767px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

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

    .author-signature {
        flex-direction: column;
        align-items: flex-start;
    }

    .bio-image img {
        width: 150px;
        height: 150px;
    }

    .bio-links {
        flex-direction: column;
    }

    .bio-link {
        width: 100%;
        justify-content: center;
    }
}

/* Feature Teaser Section */
.feature-teaser {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.feature-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.feature-text {
    position: relative;
    z-index: 2;
}

.feature-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    position: relative;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
    min-width: 150px;
}
.intro-section .intro-stats {
    display: flex;
    gap: 40px;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transform: rotate(-3deg);
    z-index: -1;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: rotate(3deg);
    z-index: -2;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item:hover::before {
    transform: rotate(-5deg);
}

.stat-item:hover::after {
    transform: rotate(5deg);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    display: block;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.europe-map {
    width: 100%;
    height: 500px;
}

.europe-map svg {
    width: 100%;
    height: 100%;
}

.europe-map path {
    fill: rgba(255, 255, 255, 0.1);
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 1;
    transition: fill 0.3s ease;
    cursor: pointer;
}

.europe-map path:hover {
    fill: var(--secondary-color) !important;
}


@media (max-width: 991px) {
    .feature-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .feature-text {
        order: -1;
    }

    .feature-title {
        font-size: 2.4rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 600px;
        margin: 0 auto;
    }

    .europe-map {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .feature-teaser {
        padding: 4rem 0;
    }

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

    .feature-subtitle {
        font-size: 1.1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .europe-map {
        height: 300px;
    }
    .europe-map img {
        width: 100%; 
        height: auto;
    }
}

@media (max-width: 480px) {
    .feature-teaser {
        padding: 3rem 0;
    }

    .feature-title {
        font-size: 1.8rem;
    }

    .feature-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .europe-map {
        height: 250px;
    }
}

/* Testimonials Teaser Section */
.testimonials-teaser {
    padding: 6rem 0;
    background: linear-gradient(135deg, hsl(198deg 75% 88% / 50%) 0%, hsl(128deg 48% 47% / 50%) 100%);
    overflow: hidden;
}

.testimonials-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54 0h6v6h-6V0zm0 10h6v6h-6v-6zM4 0h6v6H4V0zm0 10h6v6H4v-6zm10-10h6v6h-6V0zm0 10h6v6h-6v-6zm10-10h6v6h-6V0zm0 10h6v6h-6v-6zm10-10h6v6h-6V0zm0 10h6v6h-6v-6zm10-10h6v6h-6V0zm0 10h6v6h-6v-6z' fill='rgba(255, 255, 255, 0.03)' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.testimonials-teaser .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header {
    text-align: center;
}
.testimonials-teaser .teaser-subtitle {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.testimonials-teaser .teaser-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.testimonials-teaser .feature-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonial-content-wrapper {
    max-width: 1260px;
    margin: 0 auto 4rem;
    position: relative;
}
.video-line-1 {
    background-color: #296273;
    height: 426px;
    width: 600px;
    bottom: -20px !important;
    left: -20px;
}

.video-line-2 {
    background-color: #3eb24d;
    height: 447px;
    width: 610px;
    left: 40px;
    rotate: 3deg !important;
}

.video-line-1, .video-line-2 {
    position: absolute;
    bottom: -10px;
    border-radius: 30px;
    rotate: -3deg;
}

.video-testimonial-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
    background: rgb(47 67 78 / 90%);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
}

.video-preview {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    aspect-ratio: 16/9;
}

.video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.video-preview:hover img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
}

.testimonial-content {
    color: var(--white);
    position: relative;
}

.quote-mark {
    color: var(--secondary-color);
    font-size: 2.5rem;
    opacity: 0.5;
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0 0 2rem;
    padding: 0;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.author-info h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.author-info p {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.author-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.author-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 14px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.author-badges .badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.author-badges .badge i {
    color: var(--secondary-color);
}

.section-footer {
    text-align: center;
    position: relative;
}

.btn-testimonials {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-testimonials:hover {
    transform: translateY(-2px);
    background: var(--secondary-color);
}

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

.btn-testimonials:hover i {
    transform: translateX(4px);
}

@media (max-width: 1199px) {
    .video-testimonial-card {
        gap: 3rem;
        padding: 2rem;
    }
    
    .testimonial-content blockquote {
        font-size: 1.2rem;
    }
}

@media (max-width: 991px) {
    .testimonials-teaser {
        padding: 5rem 0;
    }
    
    .video-testimonial-card {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .pulse-ring {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 767px) {
    .testimonials-teaser {
        padding: 4rem 0;
    }
    
    .testimonials-teaser .teaser-title {
        font-size: 2rem;
    }
    
    .video-testimonial-card {
        padding: 1.5rem;
        gap: 0;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .pulse-ring {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
    
    .testimonial-content blockquote {
        font-size: 1.1rem;
    }
    
    .author-badges {
        justify-content: center;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Add subtle background decoration */
.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(var(--primary-color) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.6;
    z-index: 0;
}

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

.benefits-section .section-title {
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    background: var(--white);
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 220px;
    perspective: 1000px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.benefit-card:hover .benefit-card-inner {
    transform: rotateY(180deg);
}

.benefit-card-front,
.benefit-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.benefit-card-front::before,
.benefit-card-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.benefit-card:hover .benefit-card-front::before,
.benefit-card:hover .benefit-card-back::before {
    opacity: 1;
}

.benefit-card-back {
    background: var(--white);
    transform: rotateY(180deg);
    padding: 1rem;
}

.benefit-card-back p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-card-back p {
    color: var(--white);
    font-size: 1.2rem;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(62, 178, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: background 0.3s ease;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}
.benefit-icon svg {
    width: 2rem;
    fill: var(--secondary-color);
    transition: color 0.3s ease;
}

.benefit-card h3 {
    color: var(--dark-green);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: rgba(255, 255, 255, 0.2);
}

.benefit-card:hover .benefit-icon i,
.benefit-card:hover h3 {
    color: var(--white);
}

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

.benefits-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.benefits-cta .btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

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

.benefits-cta .btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 1199px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-section.benefits-section-1 {
        padding: 2rem 0;
    }
}

@media (max-width: 575px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

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

/* Evaluations Teaser Section */
.evaluations-teaser {
    padding: 6rem 0;
    background: hsl(0deg 0% 69% / 10%);
    position: relative;
    overflow: hidden;
}

.evaluations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.evaluations-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

/* Remove old triangle decorations */
.triangle-inner,
.triangle-bottom,
.triangle-bottom-inner,
.triangle-bottom-small {
    display: none;
}

/* New decorative elements */
.evaluations-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 178, 77, 0.1) 0%, rgba(41, 98, 115, 0.1) 100%);
    z-index: 1;
    border-radius: 20px;
}

.evaluations-image::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 3px solid var(--secondary-color);
    border-radius: 15px;
    z-index: 1;
}

.evaluations-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
}

.evaluations-text {
    position: relative;
}


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

    .evaluations-text {
        padding-left: 0;
        text-align: center;
        order: -1;
    }

    .evaluations-text::before {
        display: none;
    }

    .evaluations-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .evaluations-image img {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .evaluations-teaser {
        padding: 4rem 0;
    }

    .evaluations-image {
        max-width: 100%;
    }

    .evaluations-image img {
        height: 300px;
    }

    .accordion-button {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .evaluations-teaser {
        padding: 3rem 0;
    }

    .evaluations-image img {
        height: 250px;
    }
}

/* Custom Accordion Styles */
#content .accordion {
    margin: 2rem 0;
}

#content .accordion-item {
    border: none;
    background: none;
    margin-bottom: 1rem;
}

#content .accordion-button {
    background: var(--white) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 8px !important;
    padding: 1.25rem !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    color: var(--dark-green) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex !important;
    width: 100% !important;
}

#content .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#content .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232f434e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

#content .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

#content .accordion-button i {
    margin-right: 1rem;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
#content .accordion-button svg {
    margin-right: 1rem;
    width: 1.2rem;
    transition: color 0.3s ease;
}
#content .accordion-button:not(.collapsed) svg {
    fill: var(--white);
}
#content .accordion-button:not(.collapsed) i {
    color: var(--white);
}

#content .accordion-body {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0 0 8px 8px;
}

#content .accordion-body p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .evaluations-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .evaluations-text {
        padding-right: 0;
    }

    .evaluations-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .evaluations-text h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 767px) {
    .evaluations-teaser {
        padding: 4rem 0;
    }

    .evaluations-text h2 {
        font-size: 2rem;
    }

    .evaluations-image img {
        height: 400px;
    }

    .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }
}

/* Get Started Teaser Section */
.get-started-teaser {
    padding: 4rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}
.get-started-teaser .teaser-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Remove previous decorative elements */
.get-started-teaser::before,
.get-started-teaser::after {
    display: none;
}

.get-started-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.get-started-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: var(--white);
    position: relative;
    transition: transform 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Remove triangle decorations */
.get-started-card::before,
.get-started-card::after {
    display: none;
}

.get-started-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.get-started-card i {
    font-size: 4rem;
    color: var(--secondary-color);
    padding-top: 0.25rem;
    transition: transform 0.3s ease;
}

.get-started-card:hover i {
    transform: scale(1.1);
}

.card-content {
    flex: 1;
}

.get-started-card h3 {
    color: var(--dark-green);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.get-started-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.get-started-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.get-started-card a:hover {
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .get-started-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .get-started-teaser {
        padding: 2.5rem 0 2rem;
    }
    
    .get-started-card {
        padding: 1.5rem;
    }
    
    .get-started-card i {
        font-size: 2rem;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(to right, #f8f9fa 0%, #ffffff 100%);
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 1rem;
    padding-top: 0.25rem;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-item p, 
.contact-item a {
    margin: 0;
    color: #6c757d;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.contact-image img {
    width: 100%;
        height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.map-container {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background: white;
    height: 100%;
}

.form-container {
    max-width: 100%;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--secondary-color), 0.25);
    border-color: var(--secondary-color);
}

.btn-primary {
    padding: 0.75rem 2rem;
    font-weight: 500;
    background-color: var(--secondary-color) !important;
    opacity: 1 !important;
    border-color: var(--secondary-color) !important;
}

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

@media (max-width: 991px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .map-container {
        margin-top: 2rem;
        min-height: 400px !important;
    }
    
    .form-container {
        padding: 1.5rem;
    }
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-green) 100%);
    padding: 4rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5) !important;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--white) !important;
}

.breadcrumb-item.active {
    color: var(--white) !important;
}

/* Contact Info Section */
.contact-info-section {
    padding: 2rem 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.contact-info-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 0;
}

.contact-info-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    flex: 1;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    width: 24px;
    text-align: center;
}
.contact-info-item svg {
    width: 1.5rem;
    fill: var(--secondary-color);
}

.info-content {
    flex: 1;
}

.info-content .label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-green);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content p,
.info-content a {
    margin: 0;
    color: #6c757d;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
}

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

.contact-info-divider {
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.1);
    flex-shrink: 0;
}

/* Update Contact Section spacing */
.contact-section {
    padding: 4rem 0 5rem;
    background: #f8f9fa;
}

.section-title {
        font-size: 2rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}

@media (max-width: 991px) {
    .page-banner {
        padding: 3rem 0;
    }

    .page-banner h1 {
        font-size: 2.5rem;
    }

    .contact-info-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-info-item {
        width: 100%;
        justify-content: flex-start;
    }

    .contact-info-divider {
        display: none;
    }

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

@media (max-width: 767px) {
    .page-banner {
        padding: 2.5rem 0;
    }

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

/* Quality Cards Styles */
.quality-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.quality-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.quality-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--white);
}
.card-icon svg {
    width: 1.5rem;
    fill: var(--white);
}

.quality-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.quality-card p {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .quality-cards {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .quality-cards {
        grid-template-columns: 1fr;
    }
}

/* Evaluation Steps Teaser */
.evaluation-steps-teaser {
    padding: 80px 0;
    background: var(--light-blue);
    position: relative;
    overflow: hidden;
}

.steps-header {
    text-align: center;
    margin-bottom: 20px;
    padding: 0 20px;
}

.steps-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.steps-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 1020px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.timeline-track {
    position: relative;
    padding: 40px 0;
}

/* Central timeline line */
.timeline-track::before {
    content: '';
    position: absolute;
    top: 0;
    left: 60px;
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.3;
}

.timeline-step {
    position: relative;
    margin-bottom: 30px;
    padding-left: 110px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step .step-content {
    position: relative;
    background: white;
    padding: 20px 25px 20px 70px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.timeline-step .step-header {
    padding-right: 0px;
}

/* Timeline step colors */
.timeline-step:nth-child(1) .step-content { background: #296273; }
.timeline-step:nth-child(2) .step-content { background: #4A9AB2; }
.timeline-step:nth-child(3) .step-content { background: #83D6EF; }
.timeline-step:nth-child(4) .step-content { background: #2B8036; }
.timeline-step:nth-child(5) .step-content { background: #3EB04D; }
.timeline-step:nth-child(6) .step-content { background: #90F19D; }
.timeline-step:nth-child(7) .step-content { background: #163E80; }

/* Text colors based on background brightness */
.timeline-step:nth-child(1) .step-content,
.timeline-step:nth-child(4) .step-content,
.timeline-step:nth-child(7) .step-content {
    color: white;
}

.timeline-step:nth-child(1) .step-content h3,
.timeline-step:nth-child(4) .step-content h3,
.timeline-step:nth-child(7) .step-content h3,
.timeline-step:nth-child(1) .step-content p,
.timeline-step:nth-child(4) .step-content p,
.timeline-step:nth-child(7) .step-content p {
    color: white;
}

/* Connecting lines to central timeline */
.step-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -40px;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.3;
}

.timeline-step:hover .step-content {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.step-number {
    position: absolute;
    top: 50%;
    left: 40px;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
        font-size: 1rem;
    transform: translateY(-50%);
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.step-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}
.step-icon svg {
    width: 1.2rem;
    fill: var(--primary-color);
}

.step-content h3 {
    font-size: 1.1rem;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.4;
}

.step-meta {
    font-size: 0.85rem;
    opacity: 0.85;
    font-weight: normal;
    margin-left: 15px;
    white-space: nowrap;
}

.by-institution {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 8px;
    border-radius: 4px;
    margin-right: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
}

.timeline-footer {
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
}

.timeline-footer p {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 1020px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tablet Responsive */
@media (max-width: 991px) {
    .evaluation-steps-teaser {
        padding: 60px 0;
    }

    .steps-header h2 {
        font-size: 2.2rem;
    }

    .timeline-wrapper {
        max-width: 700px;
    }

    .step-content {
        padding-right: 20px;
    }

    .step-meta {
        font-size: 0.8rem;
    }

    .step-header {
        padding-right: 15px;
    }

    .accordion-arrow {
        font-size: 0.8rem;
        margin-left: 10px;
    }

    .step-description {
        padding: 15px 0;
    }

    .step-description p {
        font-size: 0.9rem;
    }

    .step-description li {
        font-size: 0.85rem;
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .evaluation-steps-teaser {
        padding: 50px 0;
    }

    .steps-header {
        margin-bottom: 40px;
    }

    .steps-header h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

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

    .timeline-track::before {
        left: 45px;
    }

    .timeline-step {
        padding-left: 80px;
        margin-bottom: 25px;
    }

    .step-number {
        left: 25px;
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .step-content {
        padding: 15px 15px 15px 60px;
    }

    .step-icon {
        width: 32px;
        height: 32px;
        left: 10px;
    }

    .step-icon i {
        font-size: 1rem;
    }

    .step-content h3 {
        font-size: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .step-meta {
        margin: 5px 0 0 0;
        font-size: 0.8rem;
    }

    .by-institution {
        margin-bottom: 5px !important;
        display: block;
    }

    .step-header {
        flex-direction: column;
        align-items: flex-start;
        padding-right: 10px;
    }

    .step-header h3 {
        width: 100%;
        margin-bottom: 5px;
    }

    .accordion-arrow {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 0.8rem;
        margin-left: 0;
    }

    .step-description {
        padding: 12px 0;
    }

    .step-description p {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .step-description li {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
    .evaluation-steps-teaser {
        padding: 40px 0;
    }

    .steps-header h2 {
        font-size: 1.6rem;
    }

    .timeline-wrapper {
        padding: 0 15px;
    }

    .timeline-step {
        padding-left: 70px;
    }

    .step-number {
        left: 20px;
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .timeline-track::before {
        left: 35px;
    }

    .step-content::before {
        left: -30px;
        width: 30px;
    }

    .step-content {
        padding: 12px 12px 12px 45px;
    }

    .step-icon {
        width: 28px;
        height: 28px;
        left: 8px;
    }

    .step-icon i {
        font-size: 0.9rem;
    }
}

/* Testimonials Grid Variation */
.testimonials-teaser--grid {
    position: relative;
    padding: 5rem 0;
}

.testimonials-teaser--grid .testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-teaser--grid .testimonials-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.testimonials-teaser--grid .testimonial-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
}

/* Image Styles */
.testimonials-teaser--grid .testimonial-image {
    position: relative;
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.testimonials-teaser--grid .testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play Overlay for Video Cards */
.testimonials-teaser--grid .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
        align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.testimonials-teaser--grid .play-overlay i {
    font-size: 2rem;
    color: #fff;
    transition: transform 0.3s ease;
}

.testimonials-teaser--grid .testimonial-card:hover .play-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.testimonials-teaser--grid .testimonial-card:hover .play-overlay i {
    transform: scale(1.2);
}

/* Card Link for Video Cards */
.testimonials-teaser--grid .card-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Content Styles */
.testimonials-teaser--grid .testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonials-teaser--grid .testimonial-header {
    margin-bottom: 1rem;
}

.testimonials-teaser--grid .testimonial-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.testimonials-teaser--grid .testimonial-header p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Quote Styles */
.testimonials-teaser--grid .testimonial-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.5rem;
    font-style: italic;
    position: relative;
    padding: 0;
    border: none;
}

.testimonials-teaser--grid .testimonial-meta {
    margin-top: auto;
}

.testimonials-teaser--grid .testimonial-meta .institution {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 991px) {
    .testimonials-teaser--grid .testimonials-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .testimonials-teaser--grid .testimonials-column {
        gap: 3rem;
    }
}

@media (max-width: 767px) {
    .testimonials-teaser--grid {
        padding: 3rem 0;
    }

    .testimonials-teaser--grid .testimonials-column {
        gap: 2.5rem;
    }

    .testimonials-teaser--grid .testimonial-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .testimonials-teaser--grid .testimonial-image {
        width: 90px;
        height: 90px;
    }

    .testimonials-teaser--grid .play-overlay i {
        font-size: 1.5rem;
    }
}

/* Written Testimonial Card Styles */
.testimonials-teaser--grid .testimonial-card.written {
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    gap: 2rem;
}

.testimonials-teaser--grid .testimonial-card.written .testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.testimonials-teaser--grid .institution-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-teaser--grid .institution-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.testimonials-teaser--grid .country-flag {
    width: 24px;
    height: auto;
    border-radius: 2px;
}

.testimonials-teaser--grid .testimonial-main {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.testimonials-teaser--grid .testimonial-card.written .testimonial-image {
    width: 160px;
    height: 160px;
    margin: 0;
}

.testimonials-teaser--grid .person-info {
    margin-bottom: 1.5rem;
}

.testimonials-teaser--grid .person-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.testimonials-teaser--grid .person-info .title {
    font-size: 1rem;
    color: var(--secondary-color);
    margin: 0 0 0.25rem;
}

.testimonials-teaser--grid .person-info .university {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.testimonials-teaser--grid .testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-style: italic;
    position: relative;
    padding: 0;
    border: none;
}

@media (max-width: 1199px) {
    .testimonials-teaser--grid .testimonial-card.written .testimonial-image {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 991px) {
    .testimonials-teaser--grid .testimonial-card.written {
        padding: 1.25rem;
    }

    .testimonials-teaser--grid .testimonial-main {
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .testimonials-teaser--grid .testimonial-card.written {
        text-align: center;
    }

    .testimonials-teaser--grid .institution-info {
        justify-content: center;
    }

    .testimonials-teaser--grid .testimonial-main {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .testimonials-teaser--grid .testimonial-card.written .testimonial-image {
        width: 120px;
        height: 120px;
    }

    .testimonials-teaser--grid .person-info {
        margin-bottom: 1rem;
    }

    .testimonials-teaser--grid .testimonial-quote {
        font-size: 1rem;
    }
}

/* Community Testimonials Section */
.community-testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-green) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.community-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
}

.community-testimonials .section-header {
    position: relative;
    margin-bottom: 4rem;
}

.community-testimonials .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.community-testimonials .section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
}

/* Video Testimonials */
.video-testimonials h3,
.written-testimonials h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.video-grid {
    display: grid;
    gap: 2rem;
}

.video-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.play-button i {
    font-size: 1.5rem;
    margin-left: 4px;
}

.video-card:hover .play-button {
    background: var(--white);
    color: var(--secondary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 1.5rem;
}

.video-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.video-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Written Testimonials */
.testimonial-slider {
    display: grid;
    gap: 2rem;
}

.written-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

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

.institution-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.institution-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.country-flag {
    width: 24px;
    height: auto;
    border-radius: 2px;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
}

.person-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

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

.person-info {
    margin-bottom: 1.5rem;
}

.person-info h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.person-info .title {
    display: block;
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.person-info .university {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.written-card blockquote {
    grid-column: 1 / -1;
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin: 0;
    padding: 0;
    border: none;
    position: relative;
}

.written-card blockquote::before {
    content: '"';
    position: absolute;
    left: -1.5rem;
    top: -0.5rem;
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

@media (max-width: 1199px) {
    .person-photo {
        width: 140px;
        height: 140px;
    }

    .written-card blockquote {
        font-size: 1.1rem;
    }
}

@media (max-width: 991px) {
    .community-testimonials {
        padding: 4rem 0;
    }

    .testimonials-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .community-testimonials .section-header h2 {
        font-size: 2.4rem;
    }

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

@media (max-width: 767px) {
    .community-testimonials {
        padding: 3rem 0;
    }

    .community-testimonials .section-header h2 {
        font-size: 2rem;
    }

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

    .testimonial-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .person-photo {
        width: 120px;
        height: 120px;
        margin: 0 auto 1.5rem;
    }

    .written-card {
        padding: 1.5rem;
    }

    .written-card blockquote {
        font-size: 1rem;
    }

    .written-card blockquote::before {
        left: 0;
        top: -2rem;
    }

    .institution-header {
        justify-content: center;
    }
}

/* Decorative Lines */
.decorative-lines {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    pointer-events: none;
    z-index: 1;
}

.decorative-lines .line {
    position: absolute;
    border-radius: 15px;
}

.decorative-lines .line-1 {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(62, 178, 77, 0.3);
    transform: translate(15px, 15px);
}

.decorative-lines .line-2 {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(41, 98, 115, 0.3);
    transform: translate(30px, 30px);
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--dark-green);
    border-radius: 15px;
    overflow: hidden;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.video-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.video-container.playing .video-thumbnail,
.video-container.playing .play-button-wrapper,
.video-container.playing .video-overlay {
    opacity: 0;
    visibility: hidden;
}

.video-container.playing .video-frame {
    opacity: 1;
    visibility: visible;
}

.play-button-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    z-index: 3;
    transition: opacity 0.3s ease;
}

@media (max-width: 991px) {
    .decorative-lines .line-1 {
        transform: translate(10px, 10px);
    }
    
    .decorative-lines .line-2 {
        transform: translate(20px, 20px);
    }
}

@media (max-width: 767px) {
    .decorative-lines {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
    }
    
    .decorative-lines .line-1 {
        transform: translate(8px, 8px);
    }
    
    .decorative-lines .line-2 {
        transform: translate(16px, 16px);
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    position: relative;
    padding: 6rem 0;
    background: var(--white);
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(41, 98, 115, 0.05) 0%, rgba(62, 178, 77, 0.05) 100%);
    z-index: 0;
}

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

.testimonials-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    border: none;
    gap: 2rem;
}

.testimonials-tabs .nav-link {
    position: relative;
    padding: 1rem 2.5rem;
    color: var(--text-color);
    font-weight: 500;
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    background: transparent;
}

.testimonials-tabs .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 30px;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.testimonials-tabs .nav-link i {
    margin-right: 0.5rem;
    position: relative;
    z-index: 1;
}

.testimonials-tabs .nav-link span {
    position: relative;
    z-index: 1;
}

.testimonials-tabs .nav-link.active::before,
.testimonials-tabs .nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.testimonials-tabs .nav-link.active,
.testimonials-tabs .nav-link:hover {
    color: var(--white);
}

.video-testimonial {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 15px 40px rgba(41, 98, 115, 0.1);
    transform: translateY(0);
    transition: all 0.3s ease;
}

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

.video-testimonial img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(41, 98, 115, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-overlay:hover {
    background: rgba(41, 98, 115, 0.5);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    70% {
        transform: scale(1.4);
        opacity: 0;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.video-info {
    padding: 1.5rem;
    background: var(--white);
}

.video-info h3 {
    color: var(--primary-color);
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 500;
}

.video-info p {
    color: var(--text-color);
    margin: 0;
    opacity: 0.8;
}

.written-testimonial {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 40px rgba(41, 98, 115, 0.1);
    position: relative;
    transform: translateY(0);
    transition: all 0.3s ease;
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-meta {
    flex: 1;
}

.testimonial-name {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
    color: var(--primary-color);
}

.testimonial-role {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0.25rem 0 0;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 3rem;
    line-height: 1;
    color: var(--secondary-color);
    opacity: 0.3;
}

.testimonial-institution {
    font-style: italic;
    color: var(--text-color);
    opacity: 0.8;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(41, 98, 115, 0.1);
}

@media (max-width: 991px) {
    .testimonials-tabs {
        flex-direction: column;
        gap: 1rem;
    }

    .testimonials-tabs .nav-link {
        width: 100%;
        text-align: center;
    }

    .video-testimonial img {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 4rem 0;
    }

    .video-testimonial img {
        height: 200px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 1.5rem;
    }

    .written-testimonial {
        padding: 1.5rem;
    }
}

/* Benefits Page Testimonials Section */
.benefits-testimonials {
    position: relative;
    padding: 6rem 0;
    background: var(--dark-green);
    color: var(--white);
    overflow: hidden;
}


.benefits-testimonials .container {
    position: relative;
    z-index: 2;
}

.benefits-testimonials .section-header {
    margin-bottom: 4rem;
}

.benefits-testimonials .section-header h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefits-testimonials .section-header p {
    color: var(--light-blue);
    font-size: 1.25rem;
    opacity: 0.9;
}

.benefits-testimonials .testimonials-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    border: none;
    gap: 2rem;
}

.benefits-testimonials .testimonials-tabs .nav-link {
    position: relative;
    padding: 1rem 2.5rem;
    color: var(--light-blue);
    font-weight: 500;
    border: 2px solid rgba(200, 233, 247, 0.2);
    border-radius: 14px;
    transition: all 0.3s ease;
    background: transparent;
}

.benefits-testimonials .testimonials-tabs .nav-link:hover {
    border-color: var(--light-blue);
    color: var(--white);
}

.benefits-testimonials .testimonials-tabs .nav-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.benefits-testimonials .testimonials-tabs .nav-link i {
    margin-right: 0.75rem;
}

.benefits-testimonials .video-testimonial {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.benefits-testimonials .video-testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.benefits-testimonials .video-testimonial img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.benefits-testimonials .video-testimonial:hover img {
    opacity: 1;
}

.benefits-testimonials .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefits-testimonials .video-overlay:hover {
    background: rgba(255, 255, 255, 0.2);
}

.benefits-testimonials .play-button {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    top: 35%;
    box-shadow: 0 0 30px rgba(62, 178, 77, 0.3);
}

.benefits-testimonials .video-info {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.benefits-testimonials .video-info h3 {
    color: var(--white);
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 500;
}

.benefits-testimonials .video-info p {
    color: var(--light-blue);
    margin: 0;
    opacity: 0.9;
}

.benefits-testimonials .written-testimonial {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: translateY(0);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefits-testimonials .written-testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.benefits-testimonials .testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2.5rem;
}

.benefits-testimonials .testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 4rem;
    line-height: 1;
    color: var(--secondary-color);
    opacity: 0.3;
}

.benefits-testimonials .testimonial-institution {
    color: var(--secondary-color);
    font-style: italic;
    opacity: 0.9;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-testimonials .testimonial-name {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
}

.benefits-testimonials .testimonial-role {
    color: var(--light-blue);
    opacity: 0.9;
    margin: 0.25rem 0 0;
}

@media (max-width: 991px) {
    .benefits-testimonials {
        padding: 4rem 0;
    }

    .benefits-testimonials .testimonials-tabs {
        flex-direction: column;
        gap: 1rem;
    }

    .benefits-testimonials .testimonials-tabs .nav-link {
        width: 100%;
        text-align: center;
    }

    .benefits-testimonials .video-testimonial img {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .benefits-testimonials .section-header h2 {
        font-size: 2rem;
    }

    .benefits-testimonials .section-header p {
        font-size: 1.1rem;
    }

    .benefits-testimonials .video-testimonial img {
        height: 200px;
    }

    .benefits-testimonials .play-button {
        width: 70px;
        height: 70px;
    }

    .benefits-testimonials .play-button i {
        font-size: 2rem;
        margin-left: 6px;
    }

    .benefits-testimonials .written-testimonial {
        padding: 1.5rem;
    }
}

/* Video Popup Styles */
.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 67, 78, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-popup.active {
    opacity: 1;
    visibility: visible;
}

.video-popup-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transform: scale(0.7);
    transition: all 0.3s ease;
}

.video-popup.active .video-popup-content {
    transform: scale(1);
}

.video-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.video-popup-close:hover {
    background: var(--secondary-color);
}

.video-popup-close i {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.video-popup-close:hover i {
    color: var(--white);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Decorative Teaser Pattern */
.decorative-teaser {
    position: relative;
}

/* Left side decoration */
.decorative-teaser::before {
    content: '';
    position: absolute;
    left: 0;
    top: 60%;
    transform: translateY(-50%);
    width: 100%;
    height: 360px;
    background: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%) -20px 0,
        linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%) -20px 0,
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%);
    background-size: 40px 40px;
    clip-path: polygon(0 0, 100% 25%, 100% 75%, 0 100%);
    z-index: 1;
}

/* Text Content Styles */
.support-text-content {
    padding-right: 2rem;
}

.support-subtitle-wrapper {
    margin-bottom: 1rem;
}

.support-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-color);
    background: rgba(62, 178, 77, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.support-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}

.support-description {
    margin-bottom: 2rem;
}

.support-description .prominent-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.support-description .prominent-text strong {
    color: var(--dark-green);
    font-weight: 600;
}

.support-description .regular-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
    margin: 0;
}

/* Support CTA */
.support-cta-wrapper {
    margin-top: 2rem;
}

.support-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(41, 98, 115, 0.2);
}

.support-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(62, 178, 77, 0.3);
    color: var(--white);
    text-decoration: none;
}

.support-cta i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.support-cta:hover i {
    transform: translateX(4px);
}

/* Support Highlights - Right Column */
.support-highlights-wrapper {
    position: relative;
}

.support-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-left-color: var(--primary-color);
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 178, 77, 0.02) 0%, rgba(41, 98, 115, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.highlight-item:hover::before {
    opacity: 1;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.highlight-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.highlight-item:hover .highlight-icon::before {
    transform: translateX(100%);
}

.highlight-icon i {
    font-size: 1.2rem;
    color: var(--white);
    z-index: 1;
    position: relative;
}

.highlight-content {
    flex: 1;
}

.highlight-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.highlight-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .support-title {
        font-size: 2rem;
    }

    .institutional-support-content {
        gap: 3rem;
    }

    .support-highlights {
        gap: 1.25rem;
    }

    .highlight-item {
        padding: 1.25rem;
    }
}

@media (max-width: 991px) {
    .institutional-support-teaser {
        padding: 2.5rem 0;
    }

    .institutional-support-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .support-text-content {
        padding-right: 0;
        text-align: center;
    }

    .support-title {
        font-size: 1.8rem;
    }

    .support-highlights {
        gap: 1rem;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .institutional-support-teaser {
        padding: 2rem 0;
    }

    .institutional-support-content {
        gap: 2rem;
    }

    .support-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .support-subtitle {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .support-description {
        margin-bottom: 1.5rem;
    }

    .support-description .prominent-text {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .support-description .regular-text {
        font-size: 0.95rem;
    }

    .highlight-item {
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }

    .highlight-icon {
        width: 45px;
        height: 45px;
    }

    .highlight-icon i {
        font-size: 1.1rem;
    }

    .highlight-content h3 {
        font-size: 0.95rem;
    }

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

@media (max-width: 480px) {
    .institutional-support-teaser {
        padding: 1.5rem 0;
    }

    .support-title {
        font-size: 1.4rem;
    }

    .support-cta {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .highlight-item {
        padding: 0.875rem;
    }

    .highlight-icon {
        width: 40px;
        height: 40px;
    }

    .highlight-icon i {
        font-size: 1rem;
    }
}

/* Decorative Teaser Styles */
.decorative-teaser {
    padding: 80px 0;
    position: relative;
    background: #f8f9fa;
}

.decorative-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(41, 98, 115, 0.05) 0%, 
        rgba(74, 154, 178, 0.03) 50%, 
        rgba(131, 214, 239, 0.05) 100%);
    pointer-events: none;
}

/* Institutional Support Teaser */
.institutional-support-teaser {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}


.institutional-support-teaser::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(62, 178, 77, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s ease-in-out infinite reverse;
}

.support-highlights-wrapper {
    position: relative;
}


.support-highlights {
    position: relative;
    z-index: 2;
}

/* Decorative dots pattern */
.institutional-support-content::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, rgba(41, 98, 115, 0.3) 2px, transparent 2px);
    background-size: 20px 20px;
    pointer-events: none;
    opacity: 0.6;
    animation: drift 10s ease-in-out infinite;
}

/* Additional floating elements */

/* Keyframe animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: rotate(45deg) scale(1);
    }
    50% {
        opacity: 1;
        transform: rotate(45deg) scale(1.1);
    }
}

@keyframes drift {
    0%, 100% {
        transform: translateX(0px) translateY(0px);
    }
    25% {
        transform: translateX(10px) translateY(-5px);
    }
    50% {
        transform: translateX(-5px) translateY(-10px);
    }
    75% {
        transform: translateX(-10px) translateY(5px);
    }
}

.institutional-support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.support-text-content {
    max-width: 100%;
    position: relative;
}

.support-subtitle-wrapper {
    margin-bottom: 20px;
}

.support-intro-text {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #3eb24d;
    line-height: 1.5;
    position: relative;
    margin-bottom: 8px;
    opacity: 0.8;
}

.support-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}

.support-description {
    margin-bottom: 2rem;
}

.support-description .prominent-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 0;
    opacity: 0.9;
}

.support-description .prominent-text strong {
    font-weight: 600;
    color: #296273;
}

.support-cta-wrapper {
    margin-top: 2rem;
}

.support-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(41, 98, 115, 0.2);
}

.support-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(62, 178, 77, 0.3);
    color: var(--white);
    text-decoration: none;
}

.support-cta i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.support-cta:hover i {
    transform: translateX(4px);
}

.support-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    max-width: 420px;
    width: 100%;
    justify-content: center;
    justify-items: center;
    position: relative;
    z-index: 2;
}

.support-highlight-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    border-radius: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 110px;
    max-width: 200px;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.support-highlight-item:first-child {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #4a9ab2 0%, #296273 100%);
    flex-direction: unset;
}

.support-highlight-item:nth-child(2) {
    background: linear-gradient(135deg, #3eb24d 0%, #296273 100%);
}

.support-highlight-item:nth-child(3) {
    background: linear-gradient(135deg, #90f19d 0%, #3eb24d 100%);
}

.support-highlight-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(41, 98, 115, 0.2);
}

.support-highlight-item::before {
    display: none;
}

.support-highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.support-highlight-icon::before {
    display: none;
}

.support-highlight-icon i {
    font-size: 20px;
    color: white;
}
.support-highlight-icon svg {
    width: 20px;
    fill: white;
}

.support-highlight-text {
    text-align: center;
}

.support-highlight-text h3 {
    margin-bottom: 0;
    line-height: 1.3;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.support-highlight-text p {
    display: none;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .support-title {
        font-size: 2.4rem;
    }
    
    .institutional-support-content {
        gap: 50px;
    }
    
    .support-highlights {
        gap: 18px;
        max-width: 380px;
    }
    
    .support-highlight-item {
        padding: 24px 18px;
        min-height: 100px;
    }
    
    .support-highlight-item:first-child {
        max-width: 180px;
        min-height: 85px;
    }
    
    .support-highlights-wrapper::before {
        width: 100px;
        height: 100px;
        top: -25px;
        right: -35px;
    }
    
    .institutional-support-content::before {
        width: 150px;
        height: 150px;
        background-size: 18px 18px;
    }
}

@media (max-width: 991px) {
    .institutional-support-teaser {
        padding: 50px 0;
    }
    
    .institutional-support-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .support-text-content {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .support-title {
        font-size: 2.4rem;
    }
    
    .support-highlights {
        max-width: 400px;
        margin: 0 auto;
        gap: 20px;
    }
    
    .support-highlight-item:first-child {
        max-width: 220px;
    }
    
    .institutional-support-teaser::before {
        width: 600px;
        height: 600px;
        top: -15%;
        right: -20%;
    }
    
    .support-highlights-wrapper::before {
        top: -40px;
        right: -20px;
    }
    
    .support-highlights-wrapper::after {
        bottom: -30px;
        left: -20px;
    }
}

@media (max-width: 767px) {
    .institutional-support-teaser {
        padding: 40px 0;
    }
    
    .institutional-support-content {
        gap: 35px;
    }
    
    .support-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .support-intro-text {
        font-size: 16px;
    }
    
    .support-description .prominent-text {
        font-size: 1rem;
    }
    
    .support-highlights {
        max-width: 320px;
        gap: 16px;
    }
    
    .support-highlight-item:first-child {
        max-width: 200px;
        min-height: 80px;
    }
    
    .support-highlight-item {
        padding: 20px 16px;
        min-height: 90px;
    }
    
    .support-highlight-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 12px;
    }
    
    .support-highlight-icon i {
        font-size: 18px;
    }
    
    .support-highlight-text h3 {
        font-size: 1rem;
    }
    
    /* Reduce decorative elements on mobile */
    .support-highlights-wrapper::before {
        width: 80px;
        height: 80px;
        top: -20px;
        right: -25px;
    }
    
    .support-highlights-wrapper::after {
        width: 60px;
        height: 60px;
        bottom: -15px;
        left: -20px;
    }
    
    .institutional-support-content::before {
        width: 120px;
        height: 120px;
        background-size: 15px 15px;
        opacity: 0.4;
    }
    
    .support-text-content::after {
        width: 40px;
        height: 40px;
        top: -5px;
        left: -15px;
    }
}

@media (max-width: 480px) {
    .institutional-support-teaser {
        padding: 30px 0;
    }
    
    .support-title {
        font-size: 1.8rem;
    }
    
    .support-cta {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .support-highlights {
        grid-template-columns: 1fr;
        max-width: 220px;
        gap: 14px;
    }
    
    .support-highlight-item:first-child {
        grid-column: 1;
        max-width: 100%;
        min-height: 75px;
    }
    
    .support-highlight-item {
        padding: 18px 14px;
        min-height: 80px;
    }
    
    .support-highlight-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 10px;
    }
    
    .support-highlight-icon i {
        font-size: 16px;
    }
    
    .support-highlight-text h3 {
        font-size: 0.95rem;
    }
    
    /* Hide some decorative elements on very small screens */
    .support-highlights-wrapper::before,
    .support-highlights-wrapper::after {
        display: none;
    }
    
    .institutional-support-content::before {
        display: none;
    }
}

/* Redesigned Get Started Teaser - Sales Focused */
.get-started-teaser-redesigned {
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, #f8fdff 0%, #e6f7ff 100%);
    position: relative;
    overflow: hidden;
}

.get-started-teaser-redesigned::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at 30% 30%, rgba(62, 180, 77, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.get-started-teaser-redesigned .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.get-started-teaser-redesigned .teaser-subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.get-started-teaser-redesigned .teaser-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.get-started-teaser-redesigned .section-description {
    font-size: 1.3rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Main Content Layout */
.get-started-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

/* Primary CTA Card - Dominant Visual Element */
.primary-cta-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-green) 100%);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(41, 98, 115, 0.15);
    transition: all 0.4s ease;
}

.primary-cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(41, 98, 115, 0.25);
}

/* Floating Decoration Elements */
.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element.element-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-element.element-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.floating-element.element-3 {
    width: 40px;
    height: 40px;
    top: 80%;
    right: 30%;
    animation-delay: 4s;
}

/* Primary CTA Content */
.primary-cta-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.cta-icon-wrapper {
    margin-bottom: 2rem;
}

.cta-icon-bg {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-icon-bg i {
    font-size: 2rem;
    color: var(--white);
}

.primary-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.primary-cta-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* CTA Features List */
.cta-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--secondary-color);
    margin-right: 0.75rem;
    font-size: 1rem;
}

.feature-item span {
    opacity: 0.9;
}

/* Primary CTA Button */
.primary-cta-action {
    margin-top: 2.5rem;
}

.btn-primary-cta {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 25px rgba(62, 180, 77, 0.3);
}

.btn-primary-cta:hover {
    background: #35a043;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(62, 180, 77, 0.4);
    color: var(--white);
    text-decoration: none;
}

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

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

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0;
}

/* Secondary Support Card */
.secondary-support-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(41, 98, 115, 0.1);
    transition: all 0.3s ease;
    height: fit-content;
}

.secondary-support-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.support-card-inner {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(41, 98, 115, 0.1);
    margin-bottom: 1.5rem;
}

.support-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-blue), rgba(62, 180, 77, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.support-card-inner h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.support-card-inner p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 1rem;
}

.btn-secondary-support {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-secondary-support:hover {
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
}

/* Quick Support Options */
.quick-support-options {
    display: flex;
    gap: 0.75rem;
}

.quick-support-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(41, 98, 115, 0.05);
    border-radius: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.quick-support-item:hover {
    background: rgba(41, 98, 115, 0.1);
    color: var(--primary-color);
    text-decoration: none;
    transform: translateY(-1px);
}

.quick-support-item i {
    font-size: 0.9rem;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(41, 98, 115, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
}

.trust-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .get-started-content {
        gap: 2rem;
    }
    
    .primary-cta-card {
        padding: 2.5rem;
    }
    
    .primary-cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .get-started-teaser-redesigned {
        padding: 4rem 0 3rem;
    }
    
    .get-started-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .get-started-teaser-redesigned .teaser-title {
        font-size: 2.5rem;
    }
    
    .trust-indicators {
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .get-started-teaser-redesigned {
        padding: 3rem 0 2.5rem;
    }
    
    .get-started-teaser-redesigned .teaser-title {
        font-size: 2rem;
    }
    
    .get-started-teaser-redesigned .section-description {
        font-size: 1.1rem;
    }
    
    .primary-cta-card {
        padding: 2rem;
    }
    
    .primary-cta-title {
        font-size: 1.8rem;
    }
    
    .primary-cta-description {
        font-size: 1.1rem;
    }
    
    .secondary-support-card {
        padding: 1.5rem;
    }
    
    .trust-indicators {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .trust-item {
        font-size: 0.9rem;
    }
    
    .quick-support-options {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .get-started-teaser-redesigned .teaser-title {
        font-size: 1.7rem;
    }
    
    .primary-cta-title {
        font-size: 1.5rem;
    }
    
    .btn-primary-cta {
        padding: 0.875rem 2rem;
        font-size: 1.1rem;
    }
    
    .trust-indicators {
        justify-content: space-around;
    }
}

/* Animation for floating elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Enhanced Get Started Teaser - Conversion Focused */
.enhanced-get-started-teaser {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fdff 0%, #e8f6ff 100%);
    position: relative;
    overflow: hidden;
}

.enhanced-get-started-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(41, 98, 115, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(46, 160, 178, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.enhanced-get-started-teaser .section-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}
.enhanced-get-started-teaser .teaser-description {
    font-size: 1.25rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* Enhanced CTA Grid */
.enhanced-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

/* Enhanced CTA Cards */
.enhanced-cta-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(41, 98, 115, 0.08);
    border: 1px solid rgba(41, 98, 115, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.enhanced-cta-card.primary-card::before {
    transform: scaleX(1);
}

.enhanced-cta-card:hover {
    box-shadow: 0 25px 50px rgba(41, 98, 115, 0.15);
}

/* Primary Card Enhancements */
.enhanced-cta-card.primary-card {
    background: linear-gradient(135deg, var(--white) 0%, #f8fdff 100%);
    border: 2px solid rgba(41, 98, 115, 0.1);
}

.enhanced-cta-card.primary-card::before {
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* Card Icons */
.enhanced-cta-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    float: left;
    margin-right: 40px;
}

.enhanced-cta-card .card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.2) 0%, transparent 100%);
}

.enhanced-cta-card .card-icon i {
    font-size: 2rem;
    color: var(--white);
    z-index: 1;
    position: relative;
}
.enhanced-cta-card .card-icon svg {
    width: 2rem;
    fill: var(--white);
    z-index: 1;
    position: relative;
}

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

/* Card Content */
.enhanced-cta-card .card-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.enhanced-cta-card .card-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
}

.benefit-item i {
    color: var(--secondary-color);
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
}

/* Consultation Features */
.consultation-features {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Enhanced Buttons */
.btn-primary-enhanced {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 8px 25px rgba(41, 98, 115, 0.25);
    position: relative;
    overflow: hidden;
    margin-left: 110px;
}

.btn-primary-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(41, 98, 115, 0.35);
    color: var(--white);
    text-decoration: none;
    background: var(--secondary-color);
}

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

.btn-primary-enhanced:hover i {
    transform: translateX(4px);
}

.btn-secondary-enhanced {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-left: 110px;
}
.btn-secondary-enhanced svg {
    width: 2rem;
    fill: var(--primary-color);
}

.btn-secondary-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn-secondary-enhanced:hover::before {
    transform: scaleX(1);
}

.btn-secondary-enhanced:hover {
    color: var(--secondary-color);
    text-decoration: none;
    border-color: var(--secondary-color);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 2.5rem 0 0;
    border-top: 1px solid rgba(41, 98, 115, 0.1);
    position: relative;
    z-index: 2;
}

.trust-item {
    text-align: center;
    animation: fadeInUp 0.6s ease forwards;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.trust-indicators .trust-text {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.trust-separator {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(41, 98, 115, 0.2), transparent);
}

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

/* Responsive Design */
@media (max-width: 1199px) {
    .enhanced-get-started-teaser .teaser-title {
        font-size: 2.5rem;
    }
    
    .enhanced-cta-card {
        padding: 2.5rem;
    }
    
    .trust-indicators {
        gap: 3rem;
    }
}

@media (max-width: 991px) {
    .enhanced-get-started-teaser {
        padding: 4rem 0;
    }
    
    .enhanced-cta-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .enhanced-get-started-teaser .teaser-title {
        font-size: 2.25rem;
    }
    
    .trust-indicators {
        gap: 2.5rem;
    }
    
    .trust-number {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .enhanced-get-started-teaser {
        padding: 3rem 0;
    }
    
    .enhanced-get-started-teaser .section-header {
        margin-bottom: 3rem;
    }
    
    .enhanced-get-started-teaser .teaser-title {
        font-size: 1.8rem;
    }
    
    .enhanced-get-started-teaser .teaser-description {
        font-size: 1.1rem;
    }
    
    .enhanced-cta-card {
        padding: 2rem;
    }
    
    .enhanced-cta-card .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .enhanced-cta-card .card-icon i {
        font-size: 1.5rem;
    }
    
    .enhanced-cta-card .card-content h3 {
        font-size: 1.5rem;
    }
    
    .trust-indicators {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .trust-separator {
        display: none;
    }
    
    .consultation-features {
        gap: 0.75rem;
    }
    
    .feature-item {
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .enhanced-get-started-teaser .teaser-title {
        font-size: 1.5rem;
    }
    
    .enhanced-cta-card {
        padding: 1.5rem;
    }
    
    .btn-primary-enhanced,
    .btn-secondary-enhanced {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .trust-number {
        font-size: 1.75rem;
    }
    
    .trust-text {
        font-size: 0.85rem;
    }
}

/* Intro Teaser Section - Simple and consistent with existing patterns */
.intro-teaser-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 100%);
}

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

.intro-text-content {
    padding-right: 20px;
}

.teaser-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 24px;
}

.intro-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
}

.intro-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.btn-intro-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-intro-cta.primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-intro-cta.primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: white;
    text-decoration: none;
}

.btn-intro-cta.secondary {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.btn-intro-cta.secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-intro-cta.tertiary {
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-intro-cta.tertiary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}
.btn-intro-cta svg {
    width: 12px;
    fill: white;
}
.btn-intro-cta.secondary svg {
    fill: var(--primary-color);
}

.intro-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.intro-image {
    width: 100%;
    height: 400px !important;
    object-fit: cover;
    display: block;
}

/* Responsive Design */
@media (max-width: 991px) {
    .intro-teaser-section {
        padding: 60px 0;
    }
    
    .intro-teaser-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .intro-text-content {
        padding-right: 0;
    }
    
    .intro-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 767px) {
    .intro-teaser-section {
        padding: 50px 0;
    }
    
    .intro-title {
        font-size: 2rem;
    }
    
    .intro-description {
        font-size: 1rem;
    }
    
    .intro-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-intro-cta {
        justify-content: center;
        padding: 16px 24px;
    }
    
    .intro-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .intro-teaser-section {
        padding: 40px 0;
    }
    
    .intro-title {
        font-size: 1.75rem;
    }
    
    .intro-description {
        font-size: 0.95rem;
    }
    
    .btn-intro-cta {
        font-size: 0.9rem;
        padding: 14px 20px;
    }
    
    .intro-image {
        height: 250px;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Scroll offset for sticky header */
#fees-calculator-section,
#registration-section {
    scroll-margin-top: 80px; /* Adjust based on your header height */
}

/* Timeline Accordion Styles */
.step-header {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
}

.step-header:hover {
    opacity: 0.9;
}

.accordion-arrow {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    opacity: 0.7;
    margin-left: 15px;
    flex-shrink: 0;
}

.step-header[aria-expanded="true"] .accordion-arrow {
    transform: rotate(180deg);
}

.step-details {
    margin-top: 15px;
}

.step-description {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Dark background steps - white border */
.timeline-step:nth-child(1) .step-description,
.timeline-step:nth-child(4) .step-description,
.timeline-step:nth-child(7) .step-description {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Light background steps - dark border */
.timeline-step:nth-child(2) .step-description,
.timeline-step:nth-child(3) .step-description,
.timeline-step:nth-child(5) .step-description,
.timeline-step:nth-child(6) .step-description {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.step-description p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.step-description p:last-of-type {
    margin-bottom: 20px;
}

.step-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-description li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.step-description li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    opacity: 0.7;
}
.timeline-step .step-description p a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Ensure text colors for accordion content */
.timeline-step:nth-child(1) .step-description,
.timeline-step:nth-child(4) .step-description,
.timeline-step:nth-child(7) .step-description, 
.timeline-step:nth-child(1) .step-description strong,
.timeline-step:nth-child(4) .step-description strong,
.timeline-step:nth-child(7) .step-description strong,
.timeline-step:nth-child(1) .step-description p,
.timeline-step:nth-child(1) .step-description li,
.timeline-step:nth-child(1) .step-description p a,
.timeline-step:nth-child(4) .step-description p,
.timeline-step:nth-child(4) .step-description li,
.timeline-step:nth-child(4) .step-description p a,
.timeline-step:nth-child(7) .step-description p,
.timeline-step:nth-child(7) .step-description li,
.timeline-step:nth-child(7) .step-description p a {
    color: white;
}
.timeline-step:nth-child(2) .step-description p a,
.timeline-step:nth-child(5) .step-description p a {
    color: var(--text-color);
}


.timeline-step:nth-child(1) .accordion-arrow,
.timeline-step:nth-child(4) .accordion-arrow,
.timeline-step:nth-child(7) .accordion-arrow {
    color: white;
}
/* Wordpress intergration fixes */
.page-header .entry-title, 
.site-footer .footer-inner, 
.site-footer:not(.dynamic-footer), 
.site-header .header-inner, 
.site-header:not(.dynamic-header), 
body:not([class*=elementor-page-]) .site-main {
    max-width: unset !important;
    padding: 0 !important;
    display: block !important;
}
.site-footer:not(.dynamic-footer)  {
    padding: 4rem 0 2rem !important;
}
.footer-legal ul {
    display: flex;
    flex-direction: row;
    padding: 0;
}
.footer-legal ul li {
    list-style: none;
} 
.e-con.e-flex>.e-con-inner {
    max-width: unset;
    padding: 0 !important;
    gap: 0;
}
.e-con {
    padding: 0 !important;
}

/* Governance Teaser Widget Styles */
.governance-teaser {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(41, 98, 115, 0.05) 0%, rgba(62, 178, 77, 0.05) 100%);
}

.governance-teaser .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.governance-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.governance-teaser .governance-header p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
}

/* Committee Grid */
.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Committee Member Cards - Keep Original Minimalistic Design */
.committee-member {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

/* Only add cursor pointer for clickable cards */
.committee-member.clickable {
    cursor: pointer;
}

/* Member Photo - Only show if image exists */
.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f8f9fa;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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


/* Member Name */
.member-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

/* Member Title */
.member-title {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Member Location */
.member-country {
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.member-country i {
    color: var(--secondary-color);
    font-size: 0.8rem;
}

/* Click Hint */
.member-click-hint {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(41, 98, 115, 0.9);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.committee-member.clickable:hover .member-click-hint {
    opacity: 1;
}

.member-click-hint i {
    font-size: 0.7rem;
}

/* Popup Modal Styles */
.member-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.3s ease-out;
}
.popup-content::-webkit-scrollbar {
    width: 5px;
}
.popup-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}
.popup-content::-webkit-scrollbar-track {
        background: #f1f1f1;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f8f9fa !important;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    outline: none;
}

.popup-close:hover {
    background: #e9ecef;
    transform: scale(1.1);
}

.popup-close i {
    color: #6c757d;
    font-size: 1.2rem;
}

/* Popup Header */
.popup-header {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    border-bottom: 1px solid #e9ecef;
    align-items: flex-start;
}

.popup-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f8f9fa;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

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

.popup-info {
    flex: 1;
}

.popup-role {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.popup-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.popup-title {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.popup-location {
    color: #6c757d;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.popup-location i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Popup Biography */
.popup-biography {
    padding: 2rem;
}

.popup-biography h4 {
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.biography-content {
    color: #6c757d;
    line-height: 1.7;
    font-size: 1rem;
}

.biography-content p {
    margin-bottom: 1rem;
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .committee-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .committee-member {
        padding: 1.5rem;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
    }
    
    .member-name {
        font-size: 1.3rem;
    }
    
    .popup-content {
        max-width: 95%;
        max-height: 90vh;
    }
    
    .popup-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .popup-photo {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    
    .popup-name {
        font-size: 1.5rem;
    }
    
    .popup-biography {
        padding: 1.5rem;
    }
    
    .member-popup {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .governance-teaser {
        padding: 3rem 0;
    }
    
    .teaser-title {
        font-size: 2rem;
    }
    
    .governance-header p {
        font-size: 1rem;
    }
    
    .committee-member {
        padding: 1.25rem;
    }
    
    .member-photo {
        width: 80px;
        height: 80px;
    }
    
    .member-name {
        font-size: 1.2rem;
    }
    
    .popup-header {
        padding: 1rem;
    }
    
    .popup-biography {
        padding: 1rem;
    }
    
    .popup-name {
        font-size: 1.3rem;
    }
}

/* Search Results Page Styles */
.search-results-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(41, 98, 115, 0.05) 0%, rgba(62, 178, 77, 0.05) 100%);
    min-height: 60vh;
}

/* Search Results Container */
.search-results-section .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-banner .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Page Banner for Search */
.page-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-green) 100%);
    padding: 3rem 0;
    color: var(--white);
    text-align: center;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.banner-title .search-query {
    color: var(--secondary-color);
    font-style: italic;
}

.banner-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

/* Search Form Wrapper */
.search-form-wrapper {
    background: var(--white);
    padding: 0rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    border: 1px solid #e9ecef;
    position: relative;
    z-index: 10;
}
.search-form-wrapper form {
    display: block;
    position: static;
    width: auto;
    max-width: none;
}
.banner-subtitle {
    color: var(--white);
}

.search-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px 12px 0 0;
}

.search-form-wrapper .input-group {
    width: 100%;
    display: flex;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.search-form-wrapper .form-control {
    border-radius: 0;
    border: 2px solid #e9ecef;
    border-right: none;
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    flex: 1;
}

.search-form-wrapper .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
    background: var(--white);
    outline: none;
}

.search-form-wrapper .form-control::placeholder {
    color: #6c757d;
    font-style: italic;
}

.search-form-wrapper .btn-primary {
    border-radius: 0;
    padding: 1rem 2rem;
    font-weight: 600;
    background: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: 1rem;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.search-form-wrapper .btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: none;
}

.search-form-wrapper .btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(41, 98, 115, 0.25);
}

.search-form-wrapper .btn-primary i {
    font-size: 0.9rem;
}

/* Search Results Grid */
.search-results-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Search Result Item */
.search-result-item {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.search-result-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.search-result-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: height 0.3s ease;
}

.search-result-item:hover::before {
    height: 4px;
}

.result-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.result-thumbnail {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
}

.result-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.result-thumbnail:hover img {
    transform: scale(1.05);
}

.result-text {
    flex: 1;
}

.result-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.result-type {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-date {
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.result-date i {
    color: var(--secondary-color);
}

.result-title {
    margin-bottom: 1rem;
}

.result-title a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.result-title a:hover {
    color: var(--primary-color);
}

.result-excerpt {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.result-footer {
    margin-top: auto;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    background: transparent;
}

.read-more-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

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

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

/* Search Pagination */
.search-pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.search-pagination .page-numbers {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-pagination .page-numbers li {
    margin: 0;
}

.search-pagination .page-numbers a,
.search-pagination .page-numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 45px;
    height: 45px;
}

.search-pagination .page-numbers a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.search-pagination .page-numbers .current {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.no-results-icon {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 2rem;
}

.no-results h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.no-results p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Suggested Content */
.suggested-content {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.suggested-content h4 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.suggested-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.suggested-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.suggested-link:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.suggested-link i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 1.2rem;
    text-align: center;
}

.suggested-link:hover i {
    color: var(--white);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .search-form-wrapper {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .search-form-wrapper .form-control {
        font-size: 1rem;
        padding: 0.875rem 1rem;
    }
    
    .search-form-wrapper .btn-primary {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        min-width: 100px;
    }
    
    .search-form-wrapper .btn-primary i {
        font-size: 0.8rem;
    }
    
    .result-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .result-thumbnail {
        width: 100%;
        height: 200px;
    }
    
    .result-title a {
        font-size: 1.3rem;
    }
    
    .result-meta {
        gap: 0.5rem;
    }
    
    .result-type {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .suggested-links {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .suggested-link {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .search-pagination .page-numbers a,
    .search-pagination .page-numbers span {
        padding: 0.5rem 0.75rem;
        min-width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 2rem 0;
    }
    
    .banner-title {
        font-size: 1.5rem;
    }
    
    .search-results-section {
        padding: 2rem 0;
    }
    
    .search-result-item {
        padding: 1.5rem;
    }
    
    .no-results {
        padding: 2rem 1rem;
    }
    
    .no-results h3 {
        font-size: 1.5rem;
    }
    
    .search-form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .search-form-wrapper .form-control {
        font-size: 0.95rem;
        padding: 0.75rem 0.875rem;
    }
    
    .search-form-wrapper .btn-primary {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        min-width: 90px;
    }
    
    .search-form-wrapper .btn-primary i {
        font-size: 0.75rem;
    }
}