* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #fff;
    color: #333;
}

header {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}

.breadcrumb a {
    color: #555;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 2.5rem;
    color: #333;
    margin-top: 10px;
}

.about-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    padding-right: 20px;
    max-width: 600px;
}

.about-text h2 {
    font-size: 2rem;
    color: #444;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
    max-width: 500px;
    padding-left: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-section {
    text-align: center;
    padding: 40px 20px;
}

.gallery-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #444;
}

.gallery-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-container img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-container img:hover {
    transform: scale(1.05);
}

/* General Styling */
.about-section {
    padding: 20px;
    background-color: #f9f9f9; /* Background color for contrast */
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.about-text {
    flex: 1;
    padding: 10px;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: Rounded corners for a modern look */
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        align-items: center;
    }

    .about-text {
        text-align: center;
        padding: 0 20px;
    }

    .about-text h2 {
        font-size: 1.5rem; /* Slightly smaller heading for mobile */
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .about-image img {
        width: 90%; /* Slightly smaller image for mobile screens */
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 1.3rem; /* Even smaller heading for very small screens */
    }

    .about-text p {
        font-size: 0.9rem; /* Adjust text size */
    }

    .about-image img {
        width: 100%; /* Full width for very small screens */
    }
}
