:root {
    --primary: #1B3A57;
    --secondary: #2C5282;
    --accent: #3182CE;
    --brand-accent: #E53E3E;
    --light-bg: #FFFFFF;
    --text: #1A202C;
    --light-text: #4A5568;
    --max-width: 1200px;
    --bright-blue: #4299E1;
    --bright-orange: #FF6B35;
    --success-green: #38A169;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    line-height: 1.6;
    position: relative;
    background: white !important;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white !important;
    z-index: -1;
}



.section {
    padding: 4rem 2rem 5rem;
    max-width: var(--max-width);
    margin: auto;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #2C3E50;
    text-align: center;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 5rem;
    font-weight: 450;
}

/* Magazine Content */
.magazine-content {
    max-width: var(--max-width);
    margin: 4rem auto 0;
    padding: 0 20px;
}

.strength-article {
    display: grid;
    grid-template-columns: 60% 40%;
    height: 400px;
    margin-bottom: 6rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-radius: 16px;
    overflow: hidden;
}

.strength-article:first-child {
    margin-top: 6rem;
}

.strength-article:nth-child(even) {
    grid-template-columns: 40% 60%;
}

.article-image {
    position: relative;
    overflow: hidden;
}

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



.translucent-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(27, 58, 87, 0.1);
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.strength-article:nth-child(even) .translucent-box {
    border-left: none;
    border-right: 1px solid rgba(27, 58, 87, 0.1);
    order: -1;
}

.strength-number {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0rem;
    display: block;
}

.translucent-box h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.translucent-box p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text);
    margin-bottom: 1rem;
}

.translucent-box p:last-child {
    margin-bottom: 0;
}





@media (max-width: 768px) {
    body {
        background: #f8f9fa;
    }
    
    body::before {
        display: none;
    }
    
    .section-title,
    .section-subtitle {
        color: var(--primary);
        text-shadow: none;
    }
    
    .article-image img {
        transition: none;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .strength-article {
        grid-template-columns: 1fr;
        height: auto;
        margin-bottom: 3rem;
        gap: 0;
    }
    
    .strength-article:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .article-image {
        height: 250px;
        order: 1;
    }
    
    .translucent-box {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(27, 58, 87, 0.1);
        padding: 2rem 1.5rem;
        order: 2;
    }
    
    .strength-article:nth-child(even) .translucent-box {
        order: 2;
        border-right: none;
    }
    
    .translucent-box h2 {
        font-size: 1.6rem;
    }
}