#home {
    position: relative;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

#home::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(255, 215, 0, 0.3),
        transparent,
        rgba(255, 215, 0, 0.3)
    );
}

.section {
    position: relative;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    padding: 120px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(255, 215, 0, 0.3),
        transparent,
        rgba(255, 215, 0, 0.3)
    );
}

#about {
    padding-top: 140px;
}

.section-content {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    margin-bottom: 2rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
    border-color: rgba(255, 215, 0, 0.5);
}

.about-text {
    flex: 1;
    text-align: center;
}

.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}