﻿html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.image-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(70%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.about-container {
    position: relative;
    z-index: 2;
    padding: 4rem 2rem;
    max-width: 1100px;
    margin: auto;
    color: white;
}

.about-section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
    color: #00aaff;
    text-transform: uppercase;
}

.info-card {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
}

    .info-card:hover {
        transform: translateY(-5px);
        background: rgba(255,255,255,0.2);
    }

    .info-card i {
        color: #00aaff;
    }

blockquote {
    font-size: 1.2rem;
    font-style: italic;
    border-left: 5px solid #00aaff;
    padding-left: 1rem;
}
