/* Background with scattered dots */
body {
    background-color: white;
    background-image: radial-gradient(#1A237E 1px, transparent 1px), radial-gradient(#FFD700 1px, transparent 1px);
    background-size: 15px 15px;
    background-position: 0 0, 7px 7px;
}

/* Page Container */
.message-container {
    max-width: 900px;
    margin: auto;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Message Box Shape */
.message-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    width: 30px;
    height: 30px;
    background: white;
    border-left: 4px solid #1A237E;
    border-top: 4px solid #1A237E;
    transform: rotate(45deg);
}

/* Page Title */
.page-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #1A237E;
    font-style: italic;
    margin-bottom: 30px;
    padding-top: 80px;
}

/* Message Content */
.message-text {
    font-size: 18px;
    font-weight: normal;
    line-height: 1.7;
    text-align: justify;
    font-style: italic;
    padding: 15px;
}

/* Go Back Button */
.back-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #1A237E;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    position: relative;
    margin-bottom: 20px;
}

.back-button:hover {
    background: #092A4D;
    transform: scale(1.05);
}

/* Director Info */
.director-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.director-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.director-text {
    text-align: left;
}

.director-text h4 {
    font-weight: bold;
    font-size: 18px;
    margin: 0;
}

.director-text p {
    font-size: 16px;
    margin: 0;
    color: #555;
}
