﻿
/* Message Section */

.message-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.image-container {
    width: 800px; 
    height: auto; 
    margin: 0 auto; 
}


.message-section {
    padding: 4rem 0;
    background-color: white;
}

.message-header {
    margin-top: 40px;
    text-align: center;
    margin-bottom: 3rem;
}

.message-title {
    color: #1a4b8c;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding: 20px 0;
}

.message-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #b8860b;
    margin: 10px auto;
    border-radius: 2px;
}

.message-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.message-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Quote Highlight */
.message-quote {
    background-color: rgba(184, 134, 11, 0.1);
    padding: 2.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    font-size: 1.3rem;
    font-style: italic;
    color: #1a4b8c;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.message-quote::before, .message-quote::after {
    content: '';
    font-size: 4rem;
    color: #b8860b;
    position: absolute;
    opacity: 0.3;
}

.message-quote::before {
    top: 10px;
    left: 20px;
}

.message-quote::after {
    bottom: -20px;
    right: 20px;
}

/* Salutation */
.salutation {
    margin-bottom: 2rem;
}

.salutation h2 {
    color: #1a4b8c;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Motto Highlight */
.motto-highlight {
    background: linear-gradient(135deg, rgba(26, 75, 140, 0.05), rgba(184, 134, 11, 0.05));
    border-left: 4px solid #b8860b;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.motto-highlight h3 {
    color: #1a4b8c;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.motto-highlight p {
    margin-bottom: 0;
    color: #333;
}

/* Closing Section */
.closing-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.signature {
    margin-top: 2rem;
    text-align: right;
}

.regards {
    font-weight: 600;
    color: #1a4b8c;
    font-size: 1.2rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 992px) {
    .message-section {
        padding: 3rem 0;
    }

    .message-title {
        font-size: 2.2rem;
    }

    .message-content {
        padding: 0 1.5rem;
    }
}

@media (max-width: 778px) {
    .message-section {
        padding: 2.5rem 0;
    }

    .message-title {
        font-size: 2rem;
    }

    .message-content {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .message-quote {
        font-size: 1.1rem;
        padding: 1.5rem;
    }

        .message-quote::before,
        .message-quote::after {
            font-size: 3rem;
        }
}

@media (max-width: 576px) {
    .message-section {
        padding: 2rem 0;
    }

    .message-title {
        font-size: 1.7rem;
    }

    .message-content {
        font-size: 0.95rem;
        padding: 0 0.8rem;
    }

    .message-quote {
        font-size: 1rem;
        padding: 1.2rem;
    }

        .message-quote::before,
        .message-quote::after {
            font-size: 2.5rem;
        }

    .signature {
        text-align: center;
    }
}