/* ================================
   MESSAGE SECTION STYLING
================================ */

.message-section {
    padding: 80px 0;
    background: #f9fbfd;
}

.message-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.message-section .section-title span {
    font-size: 28px;
    font-weight: 700;
    color: #0d6efd;
    letter-spacing: 1px;
}

.message-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Left Image */
.message-image {
    flex: 1;
}

.message-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Right Content */
.message-content {
    flex: 1.3;
}

.message-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.message-content .closing-line {
    font-weight: 600;
    color: #222;
}

/* Signature */
.signature-box {
    margin-top: 30px;
    text-align: right;
}

.signature-box img {
    width: 450px;
    height: 200px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 992px) {
    .message-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .signature-box {
        text-align: center;
    }

    .message-image img {
        height: 350px;
    }
}
