body {
    background: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-title {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 60px;
}

/* ===== GLASS BLOCKS ===== */

.about-block {
    display: flex;
    margin-bottom: 60px;
}

.about-block.left {
    justify-content: flex-start;
}

.about-block.right {
    justify-content: flex-end;
}

.about-content {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px) brightness(1.2);
    padding: 30px 35px;
    border-radius: 18px;
    width: 70%;
    max-width: 620px;
    box-shadow: 0 0 25px rgba(255,255,255,0.08);
}


.about-content h2 {
    margin-top: 0;
    font-size: 28px;
    color: #ffea66;
}

.about-content p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.85;
}

/* ===== MOBILE ===== */

@media (max-width: 700px) {

    .about-block {
        justify-content: center !important;
    }

    .about-content {
        width: 95%;
        padding: 22px 25px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-content p {
        font-size: 16px;
    }
}
.footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 100px;
    color: #8b8a8a;
    font-size: 16px;
}

.footer-link {
    color: #f9f6f6;
    text-decoration: none;
    margin: 0 12px;
    font-weight: 600;
    opacity: 0.8;
    transition: 0.3s;
}

.footer-link:hover {
    opacity: 1;
}

.top-logo-text {
    position: absolute;
    top: 24px;
    right: 2%;
    transform: translateX(-50%);
    font-size: 36px;
    font-weight: 400;
    background: linear-gradient(90deg, #ffea00, #ff4e00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 12px rgba(255, 200, 0, 0.7);
    z-index: 2000;
}

.about-btn {
    display: inline-block;
    margin-top: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #000;
    background: linear-gradient(90deg, #ffea00, #ff4e00);
    border-radius: 10px;
    text-decoration: none;
    transition: 0.25s;
    box-shadow: 0 0 12px rgba(255, 200, 0, 0.4);
}

.about-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(255, 200, 0, 0.6);
}

/* ===== MOBILE FIXES ===== */
@media (max-width: 700px) {

    .about-container {
        padding: 25px 15px;
    }

    .about-block {
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }

    .about-content {
        width: 100%;
        max-width: 100%;
        padding: 18px 20px;
    }

    .about-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .about-content h2 {
        font-size: 22px;
    }

    .about-content p {
        font-size: 15px;
    }

    .top-logo-text {
        font-size: 24px;
        right: 12px;
        transform: none;
    }

    .footer {
        margin-top: 50px;
        font-size: 14px;
    }
}


