* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: rgb(241, 241, 233);
}

/* ===== MESSAGE SECTION ===== */
.message-section {
    width: 100%;
    padding: 80px 40px;
    background-color: rgb(241, 241, 233);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 2fr;
    gap: 50px;
    align-items: start;
    max-width: 1300px;
    margin: 0 auto;
    background-color: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.image-container {
    width: 100%;
    max-width: 320px;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    border: 1px solid #000;
    box-shadow: 20px 20px 0 rgba(0, 0, 0, 0.2);
    transform: rotate(-3deg);
}

.text-content {
    padding-top: 20px;
}

.message-text {
    font-size: 18px;
    line-height: 1.8;
    color: #5c5c54;
    margin-bottom: 25px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: justify;
}

.message-text:has(.sanskrit-verse) {
    text-align: center;
}

.sanskrit-verse {
    display: block;
    text-align: center;
    font-style: italic;
}

.signature {
    margin-top: 40px;
    padding-top: 20px;
    text-align: right;
}

.signature-name {
    font-size: 22px;
    font-weight: bold;
    color: #000;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.signature-title {
    font-size: 16px;
    color: #5c5c54;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.signature-position {
    font-size: 16px;
    color: #5c5c54;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .image-container {
        position: relative;
        top: 0;
        max-width: 500px;
        margin: 0 auto;
    }

}

@media (max-width: 768px) {
    .message-section {
        padding: 60px 20px;
    }

    .message-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .content-wrapper {
        gap: 0px;
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .message-text {
        font-size: 15px;
    }

    .content-wrapper {
        padding: 30px 20px;
    }

    .image-container img {
        transform: none;
        box-shadow: none;
        border: none;
    }

    .signature {
        margin-top: 0;
        padding-top: 0;
    }
}