/* About Page Styles */

/* Apply Titillium Web font globally */
body {
    font-family: 'Titillium Web', sans-serif;
    margin: 0;
    padding: 0;
}

/* Main content container */
.about-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 120px 40px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* All elements in vertical layout */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.about-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.about-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-title {
    font-size: 40px;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 40px;
    width: 100%;
}

.about-text p {
    margin-bottom: 20px;
}

/* Photo section */
.about-photo-section {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
}

.about-photo {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    display: block;
}

.photo-caption {
    font-size: 14px;
    color: #666;
    text-align: start;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-container {
        max-width: 500px;
        padding: 100px 30px 60px;
    }
}

@media (max-width: 768px) {
    .about-container {
        max-width: 450px;
        padding: 100px 20px 60px;
    }

    .about-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .about-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .about-container {
        max-width: 350px;
        padding: 80px 15px 40px;
    }

    .about-title {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .about-text {
        font-size: 15px;
    }

    .about-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
}
