body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, 
                Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #0b2a11;
    color: #e7f8d7;
    overflow-x: hidden;
}

/* Main Container */
.about-page-container {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background-color: #0b2a11;
}

/* About Section */
.about-section {
    width: 100%;
    max-width: 1200px;
    min-height: 100vh;
    padding: 40px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    margin: 0 auto;
}

/* Content Container  */
.about-content-container {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 40px;
    box-sizing: border-box;
    margin: 0 auto;
}

.about-title {
    font-size: clamp(2rem, 8vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin: 16px 0 48px;
    text-align: center;
    opacity: 0;
    color: #e7f8d7;
    width: 100%;
}

.about-text-content {
    flex: 1;
    color: #b8e6c7;
    opacity: 0;
    padding: 0 4px;
    width: 100%;
}

.about-subtitle {
    font-size: clamp(1.5rem, 5vw, 1.875rem);
    font-weight: 700;
    color: #b8e6c7;
    margin-bottom: 16px;
}

.about-paragraph {
    margin-bottom: 20px;
    line-height: 1.75;
    font-size: clamp(1rem, 3.5vw, 1.125rem);
    color: #d0e8c2;
    letter-spacing: 0.025em;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.skill-tag {
    padding: 8px 16px;
    border-radius: 9999px;
    background-color: #254e28;
    color: #e7f8d7;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, background-color 0.2s;
}

.skill-tag:hover {
    transform: scale(1.05);
    background-color: #2e5f31;
}

.education-title {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    font-weight: 600;
    color: #a5d6a7;
    margin-bottom: 20px;
}

.education-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.glow-card {
    position: relative;
    background: #1a3a17;
    border-radius: 12px;
    border: 1.5px solid #224c2c;
    box-shadow: 0 1.5px 8px 0 rgba(0, 60, 0, 0.13);
    padding: 1.5rem;
    transition: box-shadow 0.4s ease, transform 0.3s ease;
    overflow: visible;
}

.glow-card::after {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 8px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(102, 255, 204, 0.18) 0%, rgba(20, 53, 26, 0.01) 80%);
    opacity: 0;
    filter: blur(2px);
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.glow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 32px 0 rgba(102, 255, 204, 0.13), 0 1.5px 8px 0 rgba(0, 60, 0, 0.13);
}

.glow-card:hover::after {
    opacity: 1;
}

.education-header {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: #a5d6a7;
    margin-bottom: 8px;
    font-size: clamp(1rem, 3.5vw, 1.125rem);
}

.education-date {
    color: #e7f8d7;
    font-weight: 400;
}

.education-description {
    color: #b8e6c7;
    font-size: clamp(0.875rem, 3.5vw, 1rem);
    line-height: 1.75;
}

.profile-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    padding: 0 8px;
    max-width: 350px;
    width: 100%;
}

.profile-image-wrapper {
    position: relative;
    border-radius: 45% 55% 60% 40% / 60% 35% 65% 40%;
    background-color: #254e28;
    padding: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #2e5f31;
}

.profile-image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 45% 55% 60% 40% / 60% 35% 65% 40%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    filter: brightness(1.08) grayscale(0.12);
}

.profile-tag {
    position: absolute;
    background-color: #153b1a;
    color: #e7f8d7;
    padding: 4px 8px;
    font-size: 0.75rem;
    border-radius: 9999px;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.top-left {
    top: 16px;
    left: 24px;
}

.bottom-right {
    bottom: 16px;
    right: 24px;
}

.profile-clock {
    position: absolute;
    top: 8px;
    right: 16px;
}

.quote-container {
    width: 100%;
    max-width: 800px;
    margin-top: 56px;
    text-align: center;
    padding: 0 16px;
}

.quote-text {
    border-left: 4px solid #a5d6a7;
    padding-left: 16px;
    font-style: italic;
    color: #e7f8d7;
    font-size: clamp(1rem, 3.5vw, 1.125rem);
    margin-bottom: 40px;
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.button {
    padding: 12px 24px;
    border-radius: 9999px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    font-size: 0.875rem;
}

.home-button {
    background-color: #254e28;
    color: #e7f8d7;
}

.home-button:hover {
    background-color: #193c22;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.contact-button {
    background-color: #7ecb8f;
    color: #153b1a;
}

.contact-button:hover {
    background-color: #99e2b4;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.opacity-0 {
    opacity: 0;
}

.slide-down {
    animation: slideDown 0.8s ease forwards;
}

.slide-left {
    animation: slideLeft 0.8s ease forwards;
    animation-delay: 0.3s;
}

.slide-right {
    animation: slideRight 0.8s ease forwards;
    animation-delay: 0.3s;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 767px) {
    .about-section {
        padding: 24px 12px;
    }
    
    .about-content-container {
        flex-direction: column-reverse;
        gap: 24px;
    }
    
    .profile-image-wrapper {
        height: 280px;
    }
    
    .button {
        padding: 10px 20px;
        font-size: 0.8125rem;
    }
    
    .quote-text {
        font-size: 0.95rem;
        padding-left: 12px;
    }
}

@media (min-width: 768px) {
    .about-content-container {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .profile-image-container {
        position: sticky;
        top: 40px;
    }
    
    .button {
        padding: 12px 32px;
        font-size: 1rem;
    }
}