/* About Page Styles */

.about {
    padding-top: 120px;
    min-height: 100vh;
}

.about__hero {
    text-align: center;
    padding: var(--spacing-3xl) 0;
}

.about__title {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
}

.about__subtitle {
    font-size: var(--font-size-large);
    color: rgba(0, 0, 0, 0.6);
}

.about__content {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: var(--spacing-3xl);
}

.about__section {
    margin-bottom: var(--spacing-2xl);
}

.about__section h2 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
}

.about__section p {
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.8);
}

/* Skills */
.skills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.skill-tag {
    padding: var(--spacing-xs) var(--spacing-md);
    background-color: var(--color-cyan-clear);
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-small);
}


