

/* General About Page Styling */
.about-page {
    padding: 20px;
    background-color: rgba(139, 142, 63, 0.7);
}

.page-header-img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
}

/* About Section Styling */
.about-section {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: -200px; /* Push images further to the left */
}

.id-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
}

/* About Details Styling */
.about-details {
    flex: 1;
    padding: 15px;
    background-color: rgba(255, 234, 165, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 600px;
}

.about-details p {
    margin-bottom: 10px;
    text-align: justify;
}

/* Media Query for Smaller Screens */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        align-items: center;
    }

    .about-images {
        flex-direction: row;
        justify-content: center;
    }

    .id-image {
        width: 100px;
        height: 100px;
    }

    .about-details {
        max-width: 90%;
        text-align: center;
    }
}

.separator {
    border: none;
    border-top: 1px solid rgba(88, 72, 60,1); /* Adjust color to fit your design */
    margin: 20px 0; /* Adds space above and below the line */
    width: 100%; /* Ensures the line stretches across the container */
}