#czirjak {
    justify-content: center;
    align-items: center;
    background-color: var(--color9);
    color: var(--color6);
    padding: 60px 40px;
    text-align: center;
}

#czirjak h2 {
    line-height: 1.2;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: var(--color1);
    font-weight: bold;
}

#czirjak h3 {
    font-size: 2rem;
    color: var(--color1);
    margin: 15px 0;
}

.profile {
    text-align: center;
}

.profile-image {
    border-radius: 50%;
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid rgba(255, 255, 255, 0.4);
}

.links a {
    margin: 0 10px;
}

.icons svg {
    display: inline-block;
    vertical-align: middle;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px auto;
    flex-wrap: wrap;
    width: 100%;
    max-width: 500px;
}

.social-field {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 20px 15px;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-width: 120px;
    text-decoration: none;
}

.social-field:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.social-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.social-field:hover .social-icon-wrapper {
    transform: scale(1.1);
}

.social-field-icon {
    width: 24px;
    height: 24px;
    color: var(--color1);
}

.social-field-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color1);
    margin-bottom: 8px;
    text-align: center;
}

.social-link {
    font-size: 0.85rem;
    color: var(--color1);
    font-weight: 600;
    text-decoration: none;
    padding: 5px 14px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color1);
    color: var(--color9);
}

.experience {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 35px auto;
    max-width: 900px;
}

.field {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 20px 15px;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-width: 150px;
    flex: 1;
    max-width: 200px;
}

.field:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.icon-wrapper {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.field:hover .icon-wrapper {
    transform: scale(1.1);
}

.field-icon {
    width: 28px;
    height: 28px;
    color: var(--color1);
}

.field-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color1);
    margin-bottom: 6px;
    text-align: center;
}

.field-years {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
}

.introduction {
    max-width: 800px;
    margin: 30px auto;
    text-align: left;
    line-height: 1.8;
    font-size: 1.05rem;
    background: var(--color1);
    padding: 35px;
    border-radius: 15px;
}

.introduction p {
    margin-bottom: 18px;
    color: var(--color4);
    text-align: left;
}

.introduction p:last-child {
    margin-bottom: 0;
}

.introduction p:first-of-type {
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--color6);
}

.icons {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: inline-block;
}

.icons a {
    margin: 0 15px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.icons a:hover {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

.icons svg {
    transition: fill 0.3s ease;
}

.icons a:hover svg {
    fill: var(--color6) !important;
}

@media screen and (max-width: 768px) {
    #czirjak {
        padding: 40px 20px;
    }

    #czirjak h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    #czirjak h3 {
        font-size: 1.5rem;
    }

    .profile-image {
        width: 140px;
        height: 140px;
    }

    .experience {
        gap: 15px;
        margin: 25px auto;
    }

    .field {
        min-width: auto;
        width: 45%;
        max-width: none;
        padding: 15px 10px;
    }

    .icon-wrapper {
        width: 45px;
        height: 45px;
    }

    .field-icon {
        width: 22px;
        height: 22px;
    }

    .field-title {
        font-size: 0.85rem;
    }

    .field-years {
        font-size: 0.8rem;
    }

    .social-links {
        gap: 15px;
        margin: 20px auto;
    }

    .social-field {
        min-width: auto;
        width: 28%;
        max-width: none;
        padding: 15px 8px;
    }

    .social-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .social-field-icon {
        width: 20px;
        height: 20px;
    }

    .social-field-title {
        font-size: 0.8rem;
    }

    .social-link {
        font-size: 0.75rem;
        padding: 3px 10px;
    }

    .introduction {
        margin: 20px auto;
        padding: 25px 20px;
        font-size: 1rem;
    }

    .introduction p:first-of-type {
        font-size: 1.05rem;
    }
}

@media screen and (max-width: 480px) {
    .field {
        width: 100%;
        max-width: 200px;
    }

    .social-field {
        width: 100%;
        max-width: 120px;
    }
}
