body {
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 100vh;
    background-color: var(--bg-primary);
    position: relative;
    width: 100%;
    max-width: 100vw;
}

.about-container {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 60px 40px;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.about-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Tag */
.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 20px;
    border: 2px solid var(--border-color);
}

.about-tag i {
    font-size: 14px;
}

/* Content Wrapper */
.about-content-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    width: 100%;
}

/* Left Section */
.about-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-title .title-part {
    color: var(--text-primary);
}

.about-title .title-part.highlight {
    color: var(--accent-purple);
}

.about-subtitle {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.israel-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.israel-animation {
    display: inline-block;
    width: 32px;
    height: 32px;
    vertical-align: middle;
}

.accent-line {
    width: 120px;
    height: 4px;
    background-color: var(--accent-purple);
    margin-top: 8px;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: left;
    margin-bottom: 20px;
}

.projects-section {
    margin-top: 20px;
}

.projects-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.projects-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background-color: var(--accent-purple);
}

.project-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.project-item {
    margin-bottom: 10px;
}

.project-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-purple);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.project-link i {
    font-size: 14px;
    opacity: 0.8;
}

.project-link:hover {
    color: var(--accent-purple-light);
}

.project-link:hover i {
    opacity: 1;
    transform: translateX(2px);
}

.project-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: left;
}

.project-description .project-link {
    color: var(--accent-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-description .project-link:hover {
    color: var(--accent-purple-light);
    text-decoration: underline;
}

/* Right Section */
.about-right {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-animation-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hand-animation {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-container {
        padding: 100px 40px 40px;
    }

    .about-content-wrapper {
        gap: 40px;
    }

    .about-left {
        gap: 25px;
    }

    .about-right {
        flex: 0 0 350px;
    }

    .about-title {
        font-size: 42px;
        line-height: 1.2;
    }

    .about-subtitle {
        font-size: 28px;
    }

    .about-description {
        font-size: 15.5px;
    }
}

@media (max-width: 768px) {
    .about-container {
        padding: 90px 30px 30px;
    }

    .about-wrapper {
        gap: 30px;
    }

    .about-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .about-left {
        gap: 20px;
        width: 100%;
    }

    .about-right {
        flex: 1;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .about-animation-container {
        width: 100%;
        max-width: 350px;
    }

    .hand-animation {
        max-width: 100%;
        width: 100%;
    }

    .about-title {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .about-subtitle {
        font-size: 24px;
    }

    .about-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 18px;
    }

    .projects-title {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .project-name {
        font-size: 18px;
    }

    .project-link {
        font-size: 15px;
    }

    .project-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-tag {
        font-size: 13px;
        padding: 7px 14px;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 80px 20px 20px;
    }

    .about-wrapper {
        gap: 25px;
    }

    .about-content-wrapper {
        gap: 25px;
    }

    .about-left {
        gap: 18px;
    }

    .about-title {
        font-size: 28px;
        line-height: 1.15;
        margin-bottom: 12px;
    }

    .about-subtitle {
        font-size: 20px;
        line-height: 1.3;
    }

    .israel-animation {
        width: 24px;
        height: 24px;
    }

    .accent-line {
        width: 70px;
        height: 3px;
        margin-top: 6px;
    }

    .about-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .about-animation-container {
        max-width: 280px;
    }

    .hand-animation {
        max-width: 100%;
    }

    .projects-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .projects-title::after {
        width: 80px;
        height: 3px;
    }

    .project-name {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .project-link {
        font-size: 14px;
        gap: 8px;
    }

    .project-link i {
        font-size: 12px;
    }

    .project-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .project-section {
        gap: 12px;
        margin-top: 15px;
    }

    .about-tag {
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 15px;
    }

    .about-tag i {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .about-title {
        font-size: 24px;
    }

    .about-subtitle {
        font-size: 18px;
    }

    .about-description,
    .project-description {
        font-size: 13px;
    }

    .projects-title {
        font-size: 22px;
    }

    .about-animation-container {
        max-width: 250px;
    }
}
