.about-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-section p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.skills-overview {
    background: #f9fafb;
    border-radius: 8px;
    padding: 1.5rem;
}

.skills-overview h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.skills-overview ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skills-overview li {
    color: #4b5563;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.skills-overview li::before {
    content: "•";
    color: #6366f1;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.welcome {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.gradientText {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.purpleText {
    color: #6366f1;
    font-weight: 600;
}

.textBackground {
    background: rgba(99, 102, 241, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.iconContainer {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.iconItem {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: white;
    text-decoration: none;
    color: #4b5563;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.iconItem:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.iconTip {
    font-size: 0.875rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .welcome {
        font-size: 2rem;
    }

    .description {
        font-size: 1.125rem;
    }

    .iconContainer {
        flex-wrap: wrap;
    }

    .about-section {
        margin-top: 1rem;
        padding: 1.5rem;
    }
} 