* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html, body {
    font-family:  sans-serif;
    background: #f9fafb;
    color: #1a1a1a;
    /* min-height: 100vh; */
    /* font-size: 1.1rem; */
}
.rsk-section {
    padding: 40px 0;
}
.rsk-section .rsk-container {
    width: 100%;    
    max-width: 1350px;
    margin: 0 auto;
    padding: 20px;
    animation: fadeIn 0.8s ease-in;
}
.rsk-section .rsk-title-area {
    text-align: center;
    margin-bottom: 0.5rem;
}
.rsk-section .rsk-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #003366;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-bottom: 12px;
}
.rsk-section .rsk-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: #e2b347;
    margin: 12px auto;
    border-radius: 4px;
}
.rsk-section .rsk-title-sub {
    font-size: 2rem;
}
.rsk-section .rsk-card {
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff, #f7f8fa);
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    border-left: 8px solid #0059b3;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    margin-bottom: 3rem;
}
.rsk-section .rsk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #ffffff, #f9fafb);
}
.rsk-section .rsk-split {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.rsk-section .rsk-img-container {
    display: inline-block;
    border-radius: 12px;
    border: 3px solid #0059b3;
    box-shadow: 0 6px 12px rgba(1, 1, 1, 0.15);
    overflow: hidden;
    animation: popIn 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rsk-section .rsk-grid-three .rsk-img-container {
    max-width: 350px;
    border-radius: 8px;
}
.rsk-section .rsk-img-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}
.rsk-section .rsk-img-container:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.rsk-section .rsk-img-container:active {
    transform: scale(0.95);
}
.rsk-section .rsk-grid {
    margin: 2rem 0;
}
.rsk-section .rsk-grid-four {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}
.rsk-section .rsk-grid-one {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
}
.rsk-section .rsk-grid-four .rsk-img-container {
    max-width: 400px;
    margin: 0 auto;
}
.rsk-section .rsk-grid-one .rsk-img-container {
    max-width: 400px;
    margin: 0 auto;
}
.rsk-section .rsk-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    justify-content: center;
}
.rsk-section .rsk-grid-three .rsk-img-container {
    margin: 0 auto;
}
.rsk-section .rsk-info {
    flex: 1;
}
.rsk-section .rsk-info h2 {
    font-size: 1.8rem;
    color: #003087;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    position: relative;
    padding-bottom: 8px;
}
.rsk-section .rsk-info h2::after {
    content: '';
    display: block;
    width: 75px;
    height: 4px;
    background: #e2b347;
    position: absolute;
    border-radius: 2px;
}
.rsk-section .rsk-info p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #333;
}
.rsk-section .rsk-info p strong {
    color: #00356b;
}
.rsk-section .rsk-caption {
    text-align: center;
    font-size: 1.15rem;
    color: #333;
    margin-top: 1.5rem;
    line-height: 1.9;
}
.rsk-section .rsk-caption strong {
    color: #00356b;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes popIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .rsk-section .rsk-container {
        padding: 15px;
    }
    .rsk-section .rsk-title {
        font-size: 2.4rem;
    }
    .rsk clumps .rsk-title-sub {
        font-size: 1.8rem;
    }
    .rsk-section .rsk-title::after {
        width: 80px;
        height: 4px;
    }
    .rsk-section .rsk-card {
        padding: 1.8rem;
        margin-bottom: 2.5rem;
    }
    .rsk-section .rsk-split {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .rsk-section .rsk-img-container {
        max-width: 350px;
        margin: 0 auto;
    }
    .rsk-section .rsk-grid-four, .rsk-section .rsk-grid-one, .rsk-section .rsk-grid-three {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .rsk-section .rsk-grid-four .rsk-img-container, .rsk-section .rsk-grid-one .rsk-img-container, .rsk-section .rsk-grid-three .rsk-img-container {
        max-width: 350px;
        justify-self: center;
    }
    .rsk-section .rsk-grid {
        margin: 2.5rem 0;
    }
    .rsk-section .rsk-info {
        text-align: center;
    }
    .rsk-section .rsk-info h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .rsk-section .rsk-info h2 {
        font-size: 1.6rem;
    }
    .rsk-section .rsk-info p {
        font-size: 1.1rem;
    }
    .rsk-section .rsk-caption {
        font-size: 1.1rem;
        margin-top: 1rem;
    }
}
@media (max-width: 480px) {
    .rsk-section .rsk-title {
        font-size: 2rem;
    }
    .rsk-section .rsk-title-sub {
        font-size: 1.6rem;
    }
    .rsk-section .rsk-title::after {
        width: 60px;
        height: 3px;
    }
    .rsk-section .rsk-card {
        padding: 1.5rem;
    }
    .rsk-section .rsk-img-container {
        max-width: 300px;
    }
    .rsk-section .rsk-grid-four .rsk-img-container, .rsk-section .rsk-grid-one .rsk-img-container, .rsk-section .rsk-grid-three .rsk-img-container {
        max-width: 300px;
    }
    .rsk-section .rsk-grid-four, .rsk-section .rsk-grid-one, .rsk-section .rsk-grid-three {
        gap: 1.5rem;
    }
    .rsk-section .rsk-grid {
        margin: 2rem 0;
    }
    .rsk-section .rsk-info h2 {
        font-size: 1.5rem;
    }
    .rsk-section .rsk-info p {
        font-size: 1.05rem;
    }
    .rsk-section .rsk-caption {
        font-size: 1.05rem;
    }
}