
.marine-why-module {
    width: 100%;
    background-color: #f9fafb;
    border-radius: 24px;
    margin: 24px 0;
}
.marine-why-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 24px;
    box-sizing: border-box;
}
.section-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #222222;
    text-align: center;
    margin-bottom: 12px;
}
.section-intro {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.45;
    color: #555555;
    text-align: center;
    max-width: 950px;
    margin: 0 auto 28px;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}
.why-card {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    padding: 20px 16px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}
.why-icon {
    font-size: 36px;
    margin-bottom: 12px;
}
.why-card h3 {
    font-weight: 700;
    font-size: 17px;
    color: #0047AB;
    margin-bottom: 10px;
    line-height: 1.3;
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.why-card p {
    font-size: 13px;
    line-height: 1.45;
    color: #555555;
}
.product-link {
    color: #0047AB;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.product-link:hover {
    text-decoration: underline;
}
.highlight {
    color: #0047AB;
    font-weight: 700;
}
.disclaimer-box {
    background-color: #e8f0fe;
    border-left: 4px solid #0047AB;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 13px;
    color: #1e2a3a;
    line-height: 1.45;
    text-align: center;
}
@media (max-width: 1000px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}
@media (max-width: 768px) {
    .marine-why-inner {
        padding: 24px 20px;
    }
    .section-title {
        font-size: 26px;
        margin-bottom: 10px;
    }
    .section-intro {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .why-card h3 {
        font-size: 16px;
    }
    .why-card p {
        font-size: 12px;
    }
}
@media (max-width: 640px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .why-card {
        padding: 18px 14px;
    }
    .disclaimer-box {
        padding: 10px 16px;
        font-size: 12px;
    }
}
