

/* General About Page Styling */
.about-page {
    padding: 20px;
    background-color: rgba(138 ,141, 62,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: 1200px;
    margin: 0 auto;
    flex-direction: row-reverse; /* Swaps the order of elements */
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-right: -200px; /* Push images further to the right */
    margin-left: 0; /* Remove the left margin since it's swapped */
}

.phone-image {
    width: 70%;
    height: 70%;
    object-fit: cover;
}

/* About Details Styling */
.about-details {
    padding: 15px;
    background-color: rgba(255, 234, 165, 1);
    box-shadow: 0 2px 4px rgba(255, 234, 165, 0.1);
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 1200px;
}

/* 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;
        margin-right: 0; /* Reset for smaller screens */
    }

    .about-details {
        max-width: 90%;
        text-align: center;
    }
}

.separator {
    border: none;
    border-top: 1px solid #ccc; /* 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 */
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.contact-buttons button {
    background-color: rgba(255, 234, 165, 1);
    color: rgba(88, 72, 60,1);
    border: 2px solid rgba(88, 72, 60,1);
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.contact-buttons button:hover {
    background-color: rgba(255, 234, 165, 1);
    color: rgba(88, 72, 60,1);
}
