.about-section {
    background-color: #0a0a0a;
    color: #e0e0e0;
    padding: 80px 20px;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #00ff88;
    font-weight: 700;
}

.about-text h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #00ff88;
}

.intro {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #b0b0b0;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #d0d0d0;
}

.skills-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.skills-list li {
    padding: 15px 0;
    border-bottom: 1px solid #333;
    line-height: 1.6;
}

.skills-list li strong {
    color: #00ff88;
}

.about-image {
    position: sticky;
    top: 100px;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
    border: 2px solid #00ff88;
}

.cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background-color: #00ff88;
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #00cc6f;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        position: relative;
        top: 0;
        order: -1;
        /* Photo appears first on mobile */
    }

    .about-image img {
        max-width: 100%;
    }

    .about-text h1 {
        font-size: 2.5rem;
    }
}