﻿/* Main page container */
.page {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
}

/* Header with page title */
.page-header {
    text-align: center;
    margin-bottom: 20px;
}

.page-header h1 {
    font-size: 3em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page-header h6 {
    font-size: 1.3em;
    font-weight: 600;
}

/* Image container styles */
.image-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 30px;
}

/* First image styling to be full width */
.first-image {
    grid-column: span 3;
    text-align: center;
}

.image-container img {
    width: 90%;
    height: 90%;
    border-radius: 8px;
    margin-bottom: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
}

    .image-container img:hover {
        transform: scale(1.05);
    }

/* Page Content Styling */
.content {
    font-size: 1.2em;
    color: #333;
    line-height: 1.8;
    margin-bottom: 40px;
}

    .content p {
        margin-bottom: 20px;
        text-align: justify;
    }

/* Responsive Layout */
@media (max-width: 768px) {
    .page {
        width: 95%;
        padding: 20px;
    }

    .page-header h1 {
        font-size: 2.5em;
    }

    .page-header h6 {
        font-size: 1.2em;
    }

    .content {
        font-size: 1em;
    }

    .image-container {
        grid-template-columns: repeat(2, 1fr); /* 2 images per row on small screens */
    }
}

@media (max-width: 480px) {
    .image-container {
        grid-template-columns: 1fr; /* 1 image per row on very small screens */
    }
}
