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

#czirjak h3 {
    font-size: 4vw;
}

.profile {
    text-align: center;
}

.profile-image {
    border-radius: 50%;
    width: 30%;
    height: 30%;
    margin-bottom: 20px;
}

.links a {
    margin: 0 10px;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    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.03);
    border-radius: 15px;
    padding: 20px 15px;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 140px;
    text-decoration: none;
}

.social-field:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color8), var(--color10));
    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: 30px;
    height: 30px;
    color: var(--color6);
}

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

.social-link {
    font-size: 0.85rem;
    color: var(--color8);
    font-weight: 500;
    text-decoration: none;
    padding: 4px 12px;
    border: 1px solid var(--color8);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color8);
    color: var(--color6);
}

.experience {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.field {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px 20px;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 180px;
}

.field:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color8), var(--color10));
    border-radius: 50%;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

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

.field-icon {
    width: 40px;
    height: 40px;
    color: var(--color6);
}

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

.field-years {
    font-size: 0.9rem;
    color: black;
    font-weight: 500;
}

.introduction {
    max-width: 800px;
    margin: 30px auto;
    text-align: left;
    line-height: 1.8;
    font-size: 1.1rem;
    background: var(--color8);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

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

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

.icons {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    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: 10px;
        min-height: 50vh;
    }

    .experience {
        flex-direction: column;
        gap: 15px;
        margin: 20px 0;
        align-items: center;
    }

    .field {
        min-width: auto;
        width: 100%;
        max-width: 280px;
        padding: 15px 12px;
    }

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

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

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

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

    .profile {
        text-align: center;
        margin-top: 20px;
    }

    .profile-image {
        width: 50%;
        height: 50%;
        max-width: 150px;
        max-height: 150px;
        margin-bottom: 15px;
    }

    .social-links {
        flex-direction: column;
        gap: 20px;
        margin: 20px auto;
        width: 100%;
        max-width: 250px;
        align-items: center;
    }

    .social-field {
        min-width: auto;
        width: 100%;
        max-width: 250px;
        padding: 15px 12px;
    }

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

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

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

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

    .introduction {
        margin: 20px auto;
        padding: 20px;
        font-size: 1rem;
        background: var(--color8);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

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