body{
    background-color: #008672;
}
        .form-container {
            background-color: #003028;
            padding: 2.5rem;
            border-radius: 15px;
            max-width: 800px;
            width: 100%;
            margin: 0 auto;
        }
        .form-title {
            color: #fff;
            text-align: center;
            margin-bottom: 2.5rem;
            font-size: 2.5rem;
            font-weight: 400;
        }
        .form-title em {
            font-style: italic;
            font-weight: 700;
        }
        .form-label {
            color: #fff;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }
        .form-label .required {
            color: #008672;
        }
        .form-control, .form-select {
            background-color: #f2f2f2;
            border: none;
            border-radius: 8px;
            height: 48px;
            padding: 0.75rem 1rem;
            font-size: 1rem;
        }
        .form-control:focus, .form-select:focus {
            background-color: #e9e9e9;
            box-shadow: none;
            border-color: #ced4da;
        }
        .btn-submit {
            background-color: #ff4500;
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 25px;
            font-size: 1.25rem;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
        }
        .btn-submit:hover {
            background-color: #e63e00;
        }
        .phone-input .form-select {
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
        }
        .phone-input .form-control {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }






         .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 3rem;
        }
        .benefit-card {
            background-color: #FFFFFF;
            border: 1px solid #f0f0f0;
            border-radius: 1rem;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }
        .benefit-card .icon-container {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            background-color: #fdf8f1;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .benefit-card .icon-container img {
            max-width: 35px;
        }
        .benefit-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        .benefit-card p {
            font-size: 1rem;
            line-height: 1.6;
            color: #555;
        }
        @media (max-width: 991.98px) {
            .benefit-card {
                margin-bottom: 2rem;
            }
        }
        @media (max-width: 767.98px) {
            .section-title {
                font-size: 2rem;
            }
        }









