* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #faf3f5, #f5f5f7);
    min-height: 100vh;
    color: #2c3e50;
}

/* Navigation Styles (same as landing page) */
.nav-container {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

.logo span {
    color: #e9b7ce;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e9b7ce;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #e9b7ce;
}

.nav-links a:hover::after {
    width: 100%;
}

/* About Page Specific Styles */
.about-container {
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 2rem;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.about-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.about-subtitle {
    color: #5d6d7e;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.section-card:hover {
    transform: translateY(-5px);
}

.section-title {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9b7ce;
    display: inline-block;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.skill-tag {
    background: #f8e5ee;
    color: #2c3e50;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.about-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

/* Footer Styles */
footer {
    background: white;
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-links {
    margin: 1rem 0;
}

.social-icon {
    color: #2c3e50;
    margin: 0 1rem;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #e9b7ce;
}

@media (max-width: 768px) {

    .two-column {
        grid-template-columns: 1fr;
    }
}