@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

.about-section {
    font-family: 'Share Tech Mono', monospace;
    max-width: 1100px;
    margin: auto;
    padding: 30px;
    color: #cacaca;
    background: #0d0d0d98;
    border-radius: 10px;
    box-shadow: 0 0 15px #ff9f1c;
    margin-top: 30px;
    margin-bottom: 30px;
}

.about-section h1 {
    text-align: center;
    color: #ff9f1c;
    font-size: 2.2em;
    margin-bottom: 40px;
}

.about-block {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.about-block.reverse {
    flex-direction: row-reverse;
}

.about-block img {
    width: 45%;
    border-radius: 8px;
    box-shadow: 0 0 10px #ff9f1c;
    object-fit: cover;
}

.about-block .text {
    width: 55%;
}

.about-block h2 {
    color: #ff9f1c;
    margin-bottom: 10px;
}

.about-block p, .about-block ul {
    line-height: 1.6;
    font-size: 1.3em;
}

.about-block ul {
    list-style: none;
    padding: 0;
}

.final-note {
    text-align: center;
    font-style: italic;
    color: #ff8800;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-block {
        flex-direction: column;
    }

    .about-block.reverse {
        flex-direction: column;
    }

    .about-block img, .about-block .text {
        width: 100%;
    }
}
