/* Principal Message Section */
.principal-message {
    background-color: #01070c;
    padding: 80px 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    color: #02a1ea;
    font-size: 2.2rem;
    margin-bottom: 50px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #e74c3c;
}

.message-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

/* Animation Classes */
.fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Principal Photo */
.principal-photo {
    flex: 1;
    text-align: center;
}

.principal-photo img {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.principal-photo:hover img {
    transform: scale(1.03);
}

.principal-name {
    margin-top: 20px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #106ae9;
}

/* Message Text */
.message-text {
    flex: 2;
}

.message-quote {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    border-left: 4px solid #e74c3c;
}

.message-quote p {
    color: #555;
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.message-quote p:first-child {
    font-weight: 600;
    color: #1a3e72;
}

.read-more-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #e74c3c;
}

.read-more-btn:hover {
    background-color: transparent;
    color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 992px) {
    .message-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .principal-photo {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .principal-message {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .message-quote {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .principal-name {
        font-size: 1.2rem;
    }
    
    .message-quote p {
        font-size: 1rem;
    }
    
    .read-more-btn {
        padding: 10px 25px;
    }
}