.about {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 100px 9%;
    color: white;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 50px;
    line-height: 1.2;
}

.about-text h2 span {
    color: #5ca5ee;
}

.about-text h3 {
    font-size: 24px;
    margin: 1rem 0;
    color: #5ca5ee;
}

.about-text p {
    font-size: 16px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Kártyák stílusa */
.about-skills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.skill-card {
    background: #323946;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    cursor: default;
}

.skill-card i {
    font-size: 40px;
    color: #5ca5ee;
    margin-bottom: 15px;
}

.skill-card span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.skill-card p {
    font-size: 13px;
    color: #ccc;
}

/* Hover effekt: felemelkedik és kéken világít a széle */
.skill-card:hover {
    border-color: #5ca5ee;
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(92, 165, 238, 0.2);
}

.active-card {
    border-color: #5ca5ee;
}
/* RESZPONZIVITÁS */

@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr; /* Egymás alá kerül a szöveg és a kártyák */
        text-align: center;
    }

    .about-skills {
        grid-template-columns: 1fr; /* A technológiai kártyák is egymás alá kerülnek */
    }
    
    .about-text h2 {
        font-size: 30px;
    }
}