@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

.shr-advantage-section {
    position: relative;
    background-color: #ffffff;
    padding: 100px 20px;
    font-family: 'DM Sans', sans-serif;
    color: #333333;
    overflow: hidden;
}

.shr-advantage-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(100px, 15vw, 250px);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.02);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    font-family: Georgia, serif;
}

.shr-advantage-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.shr-advantage-header {
    text-align: center;
    margin-bottom: 60px;
}

.shr-advantage-title {
    font-family: Georgia, serif;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
}

.shr-advantage-divider {
    width: 60px;
    height: 4px;
    background-color: #0A2540; /* Navy Blue accent */
    margin: 0 auto;
    border-radius: 2px;
}

.shr-advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.shr-advantage-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 32px 24px;
    border-top: 4px solid #0A2540; /* Navy Blue top accent */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.shr-adv-card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #1a1a1a;
}

.shr-adv-card-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

@media (max-width: 768px) {
    .shr-advantage-section {
        padding: 60px 20px;
    }
    .shr-advantage-header {
        margin-bottom: 40px;
    }
}
