
    .about-section {
        background: #fff;
        padding: 2rem 0;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .about-content {
        background: #fff;
        padding: 2rem;
        position: relative;
        z-index: 1;
    }

    .about-section .gradient-divider {
        height: 2px;
        background: linear-gradient(to right, 
            transparent 0%,
            rgba(77, 0, 0, 0.5) 25%,
            rgba(77, 0, 0, 0.8) 50%,
            rgba(77, 0, 0, 0.5) 75%,
            transparent 100%
        );
        margin: 4rem auto;
        width: 80%;
        max-width: 800px;
        display: block !important;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: 0 1px 3px rgba(77, 0, 0, 0.1);
    }

    @media (max-width: 768px) {
        .gradient-divider {
            width: 90%;
            margin: 3rem auto;
        }
    }

    .about-tabs .nav-tabs {
        border-bottom: 2px solid #4d0000;
    }

    .about-tabs .nav-link {
        color: #333;
        font-weight: 500;
        padding: 1rem 1.5rem;
        border: none;
        transition: all 0.3s ease;
    }

    .about-tabs .nav-link.active {
        color: #fff;
        background: linear-gradient(145deg, 
            #333333 0%, 
            #3d1a1a 25%,
            #4d0000 50%,
            #590000 75%,
            #660000 100%
        );
        border-radius: 8px 8px 0 0;
        animation: tabSlideIn 0.3s ease-out;
    }

    .tab-content {
        padding: 2rem;
        animation: fadeIn 0.5s ease-out;
    }

    .about-card {
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        animation: cardSlideIn 0.5s ease-out;
    }

    .about-card h3 {
        color: #4d0000;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .about-card p {
        color: #333;
        line-height: 1.6;
    }

    .about-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .about-header h2 {
        color: #4d0000;
        font-weight: 600;
    }

    .tab-pane {
        padding: 2rem 0;
    }

    .timeline-container {
        position: relative;
        padding: 2rem 0;
        margin-left: 100px;
    }

    .timeline-container::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 3px;
        background: #4d0000;
    }

    .timeline-item {
        position: relative;
        padding-left: 30px;
        margin-bottom: 2.5rem;
    }

    .timeline-marker {
        position: absolute;
        left: -5px;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #4d0000;
        animation: dotPulse 2s infinite;
    }

    .timeline-year {
        position: absolute;
        left: -130px;
        top: -2px;
        color: #4d0000;
        font-weight: 600;
        font-size: 1.1rem;
        width: 100px;
        text-align: right;
    }

    .timeline-text {
        background: rgba(255, 255, 255, 0.8);
        padding: 0.5rem 0;
    }

    .timeline-text p {
        margin: 0;
        line-height: 1.6;
        text-align: justify;
    }

    @keyframes dotPulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.2); }
        100% { transform: scale(1); }
    }

    .card .card-header {
        background: linear-gradient(145deg, 
            #333333 0%, 
            #3d1a1a 25%,
            #4d0000 50%,
            #590000 75%,
            #660000 100%
        );
        opacity: 0.92;
        padding: 1rem;
        border: none;
        border-radius: 8px 8px 0 0;
    }

    .card .card-header h5 {
        color: rgba(255, 255, 255, 0.95);
        font-size: 1.5rem;
        margin: 0;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    @media (max-width: 768px) {
        .timeline-container {
            margin-left: 60px;
        }
        
        .timeline-year {
            left: -90px;
            width: 60px;
            font-size: 1rem;
        }
    }

    .mission-container {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        gap: 3rem;
        padding: 2rem;
        min-height: 500px;
    }

    .logo-side {
        padding-bottom: 70px;
        flex: 0 0 350px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .met-logo {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .statements-side {
        flex: 1;
    }

    .statement-card {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(8px);
        border-radius: 12px;
        padding: 2rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

    .mission-text {
        text-align: justify;
        line-height: 1.6;
        color: #333;
        margin-bottom: 1rem;
    }

    .mission-text:last-child {
        margin-bottom: 0;
    }

    @media (max-width: 768px) {
        .mission-container {
            flex-direction: column;
            min-height: auto;
        }
        
        .logo-side {
            flex: 0 0 auto;
        }
        
        .met-logo {
            max-width: 250px;
        }
    }

    /* Animation classes */
    .animated-content {
        animation: slideIn 0.5s ease-out;
    }

    .animated-logo {
        animation: fadeIn 0.8s ease-out;
    }

    .animated-card {
        animation: cardSlideIn 0.5s ease-out;
        animation-delay: 0.3s;
        animation-fill-mode: both;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: scale(0.95);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    @keyframes cardSlideIn {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .overview-animated {
        animation: fadeIn 0.5s ease-out;
    }

    .animated-icon {
        animation: iconFloat 3s ease-in-out infinite;
    }

    .fade-in {
        animation: fadeIn 0.8s ease-out;
    }

    .slide-in {
        opacity: 0;
        animation: slideInFromLeft 0.5s ease-out forwards;
    }

    .section-row:nth-child(3) { animation-delay: 0.2s; }
    .section-row:nth-child(4) { animation-delay: 0.4s; }
    .section-row:nth-child(5) { animation-delay: 0.6s; }

    @keyframes slideInFromLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes iconFloat {
        0%, 100% {
            transform: translateY(0) rotate(0deg);
        }
        50% {
            transform: translateY(-5px) rotate(5deg);
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .overview-animated,
        .animated-icon,
        .fade-in,
        .slide-in {
            animation: none;
        }
    }

    .relations-intro {
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .wmo-section {
        position: relative;
        z-index: 1;
        text-align: center;
        margin: 2rem 0;
    }

    .org-logo {
        max-width: 200px;
        height: auto;
    }

    .commissions-section {
        margin-top: 3rem;
    }

    .commissions-section h4 {
        color: #4d0000;
        text-align: center;
        margin-bottom: 2rem;
    }

    .commission-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        padding: 1rem;
    }

    .commission-card {
        background: white;
        border-radius: 12px;
        padding: 1.5rem;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
        opacity: 0;
        animation: fadeIn 0.5s ease-out forwards;
    }

    .commission-card:hover {
        transform: translateY(-5px);
    }

    .commission-card img {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }

    .commission-card h5 {
        color: #4d0000;
        font-size: 1rem;
        margin: 0;
    }

    .commission-card:nth-child(1) { animation-delay: 0.1s; }
    .commission-card:nth-child(2) { animation-delay: 0.2s; }
    .commission-card:nth-child(3) { animation-delay: 0.3s; }
    .commission-card:nth-child(4) { animation-delay: 0.4s; }
    .commission-card:nth-child(5) { animation-delay: 0.5s; }
    .commission-card:nth-child(6) { animation-delay: 0.6s; }

    @media (max-width: 768px) {
        .commission-grid {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }
    }

    .wmo-main-section {
        padding: 2rem;
        margin-bottom: 3rem;
        background: linear-gradient(145deg, #fff 0%, #f8f8f8 100%);
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    .wmo-content {
        display: flex;
        align-items: center;
        gap: 3rem;
    }

    .wmo-logo {
        flex: 0 0 150px;
        text-align: center;
  
    }

    .main-logo {
        max-width: 200px;
        height: auto;
        transition: transform 0.3s ease;
    }

    .main-logo:hover {
        transform: scale(1.05);
    }

    .wmo-text {
        flex: 1;
        line-height: 1.8;
    }

    .commissions-section {
        margin-top: 4rem;
    }

    .commissions-section h3 {
        color: #4d0000;
        text-align: center;
        margin-bottom: 3rem;
        font-weight: 600;
    }

    .commission-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        padding: 1rem;
    }

    .commission-card {
        perspective: 1000px;
        height: 200px;
    }

    .card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        transition: transform 0.6s;
        transform-style: preserve-3d;
        cursor: pointer;
    }

    .commission-card:hover .card-inner {
        transform: rotateY(180deg);
    }

    .card-front, .card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .card-back {
        transform: rotateY(180deg);
        background: #4d0000;
        color: white;
    }

    .card-front img {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }

    .card-front h4 {
        color: #4d0000;
        margin: 0;
        text-align: center;
    }

    @media (max-width: 768px) {
        .wmo-content {
            flex-direction: column;
            text-align: center;
        }
        
        .wmo-logo {
            flex: 0 0 auto;
        }
        
        .commission-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
    }

    .relations-content {
        padding: 2rem;
        animation: fadeIn 0.5s ease-out;
    }

    .wmo-info {
        margin-bottom: 3rem;
        line-height: 1.8;
    }

    .commissions-section h4 {
        color: #4d0000;
        margin-bottom: 1.5rem;
        font-weight: 600;
    }

    .commission-links {
        list-style: none;
        padding: 0;
    }

    .commission-links li {
        margin-bottom: 1rem;
    }

    .commission-links a {
        color: #4d0000;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .commission-links a:hover {
        color: #800000;
        text-decoration: underline;
    }

    .relations-content {
        padding: 2rem;
        animation: fadeIn 0.5s ease-out;
    }

    .wmo-section {
        display: flex;
        align-items: center;
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .wmo-logo {
        width: 200px;
        height: auto;
    }

    .wmo-text {
        flex: 1;
        line-height: 1.8;
    }

    .commissions-section {
        animation: slideIn 0.5s ease-out;
        animation-delay: 0.3s;
    }

    .commissions-section h4 {
        color: #4d0000;
        margin-bottom: 1.5rem;
    }

    .commission-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .commission-links a {
        color: #4d0000;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .commission-links a:hover {
        color: #800000;
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .wmo-section {
            flex-direction: column;
            text-align: center;
        }
        
        .wmo-logo {
            width: 150px;
            margin: 0 auto;
        }
    }

    .content-section {
        position: relative;
        z-index: 1;
        margin-bottom: 3rem;
    }

    .content-section + .gradient-divider {
        margin: 3rem 0;
        opacity: 1 !important;
    }

    .section-title {
        color: #4d0000;
        margin-bottom: 2rem;
        font-size: 1.8rem;
        font-weight: 600;
    }

    .scroll-animate {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease-out;
    }

    .scroll-animate.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .org-title {
        color: #4d0000;
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .org-subtitle {
        color: #4d0000;
        font-size: 1.2rem;
        opacity: 0.9;
    }

    .justified-text {
        text-align: justify;
        line-height: 1.6;
        margin-bottom: 1rem;
        color: #333;
    }

    .wmo-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 1rem;
    }

    .commission-header {
        color: #4d0000;
        text-align: center;
        margin: 2rem 0 1rem;
        font-size: 1.3rem;
        font-weight: 600;
    }

    .links-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
        justify-items: center;
        text-align: center;
    }

    .commission-link {
        color: #4d0000;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
        padding: 0.5rem;
    }

    .commission-link:hover {
        color: #800000;
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .links-grid {
            grid-template-columns: 1fr;
        }
    }

    .gradient-top {
        height: 3px;
        background: linear-gradient(to right,
            transparent,
            rgba(77, 0, 0, 0.3),
            rgba(77, 0, 0, 0.5),
            rgba(77, 0, 0, 0.3),
            transparent
        );
        margin-bottom: 2rem;
    }

    .section-row {
        display: flex;
        align-items: center;
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .text-side {
        flex: 1;
        padding: 1rem;
    }

    .text-side p {
        text-align: justify;
        line-height: 1.6;
        color: #333;
    }

    .image-side {
        flex: 1;
        min-width: 550px;
        max-width: 600px;
    }

    .image-side img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .section-title {
        color: #4d0000;
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .org-subtitle {
        color: #666;
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }

    @media (max-width: 992px) {
        .section-row {
            flex-direction: column;
            gap: 2rem;
        }
        
        .image-side {
            min-width: 100%;
            max-width: 100%;
        }
        
        .image-side img {
            height: 300px;
        }
        
        .text-side p {
            text-align: justify;
            padding: 0 1rem;
        }
    }

    /* Special border only for International Relations section */
    .international-relations .statement-card {
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .wmo-link {
        color: #4d0000;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .wmo-link:hover {
        color: #800000;
        text-decoration: underline;
    }

    .wmo-logo a {
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .wmo-logo a:hover {
        transform: scale(1.05);
    }

    /* History Section with World Map Background */
    .history-section {
        position: relative;
        padding: 3rem 0;
        background: none;
        min-height: 400px;
    }

    .history-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('../images/about/world-map.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.15;
        z-index: 0;
    }

    /* Make history cards transparent */
    .history-section .card {
        position: relative;
        z-index: 1;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(5px);
        border: none;
        transition: transform 0.3s ease, background 0.3s ease;
    }

    .history-section .card:hover {
        background: rgba(255, 255, 255, 0.85);
        transform: translateY(-5px);
    }

    .history-section .card-body {
        background: transparent;
    }
