.ss-section {
    background-color: #ffffff;
    /* Subtle background as it looks in image? Actually image looks very light #F8FAFC except cards */
    padding-top: 200px;
    /* Space for fixed header and subnav enlarged */
    padding-bottom: 50px;
}

.ss-container {
    max-width: 1440px;
    padding-left: 160px;
    padding-right: 160px;
    margin: 0 auto;
}

.ss-header {
    margin-bottom: 40px;
}

.ss-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 42px;
    color: #06142d;
    margin-bottom: 10px;
    line-height: normal;
}

.ss-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #929aa7;
    max-width: 600px;
    line-height: 1.75;
}

.btn-contact {
    width: 300px;
    height: 52px;
    flex-grow: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-radius: 999px;
    background-color: #159c33;
}

.btn-contact-green {
    display: inline-flex;
    margin-top: 40px !important;
    align-items: center;
    gap: 10px;
    background-color: #16A34A;
    /* Warna hijau khas tombol sebelumnya */
    color: #ffffff;
    padding: 18px 60px;
    border-radius: 100px;
    /* Bentuk kapsul membulat */
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-contact-green i {
    font-size: 16px;
}

.btn-contact-green:hover {
    background-color: #15803d;
    /* Warna hijau sedikit lebih gelap saat di-hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
    /* Efek bayangan lembut */
    color: #ffffff;
}

@media (max-width: 1024px) {
    .ss-container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 768px) {
    .ss-section {
        padding-top: 30px !important;
    }

    .ss-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ss-header h2 {
        font-size: 30px;
    }

    .ss-header p {
        font-size: 14px;
    }

    .btn-contact-green {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }
}
