section.contact h1 {
    font-size: 32px;
    font-weight: bold;
}

section.contact p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
}

footer input[type="email"] {
    width: 500px;
    height: 56px;
    border-radius: 12px;
    border: 0px solid #ccc;
    padding: 0 20px;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
    background-color: #fff;
    box-shadow: 0px 4px 24px 0px #00000014;
    transition: box-shadow 0.3s ease;
}

footer input[type="email"]::placeholder {
    color: #999;
}

/* Khi focus input trong footer */
footer input[type="email"]:focus {
    box-shadow: 0px 6px 28px 0px #00000020;
}

/* Button trong footer */
footer button {
    background-color: #2C6E1F !important;
    color: #fff !important;
    border: none;
    border-radius: 12px;
    width: 127px;
    height: 56px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

footer button:hover {
    background-color: #245a18;
}

/* Section info trong footer */
footer section.info {
    background-color: #2C6E1F;
    padding: 40px 20px;
    color: #fff;
    width: 100%;
}

section.info .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 20px;
}

/* Responsive fonts */
@media (max-width: 1024px) {
    section.contact h1 {
        font-size: 28px;
    }

    section.contact p {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (max-width: 768px) {
    section.contact h1 {
        font-size: 24px;
    }

    section.contact p {
        font-size: 16px;
        line-height: 24px;
    }
}

.footer-section {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF
}

@media (min-width: 1200px) {
    .footer-content {
        justify-content: space-between;
    }
}

@media (max-width: 992px) {
    .contact-footer {
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    .footer-section .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    .certificate-footer {
        align-items: center;
    }
}

