.about-container {
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.about-left h1 {
    font-size: 3em;
    color: #f5f5f7;
    margin-bottom: 10px;
    text-align: left;
}

.about-left .subtitle {
    font-size: 1.2em;
    color: #667eea;
    margin-bottom: 50px;
}

.fade-in {
    opacity: 0;
}

.scroll-fade {
    opacity: 0;
}

.info-section {
    margin-bottom: 40px;
}

.info-section h2 {
    font-size: 1.8em;
    color: #f5f5f7;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item {
    background: rgba(29, 29, 31, 0.4);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.info-item:hover {
    background: rgba(29, 29, 31, 0.6);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateX(10px);
}

.info-item h3 {
    font-size: 1.2em;
    color: #f5f5f7;
    margin-bottom: 5px;
}

.info-item .role {
    color: #667eea;
    font-size: 1em;
    margin-bottom: 5px;
}

.info-item .date {
    color: #a1a1a6;
    font-size: 0.9em;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s;
}

.skill-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.about-right {
    position: sticky;
    top: 120px;
}

.image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.contact-container {
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
}

.contact-content h1 {
    font-size: 3.5em;
    color: #f5f5f7;
    margin-bottom: 20px;
}

.contact-content .subtitle {
    font-size: 1.2em;
    color: #a1a1a6;
    margin-bottom: 60px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: rgba(29, 29, 31, 0.6);
    backdrop-filter: blur(20px);
    padding: 50px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s;
}

.contact-card:hover {
    transform: translateY(-10px);
    background: rgba(29, 29, 31, 0.8);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.contact-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.5em;
    color: #f5f5f7;
    margin-bottom: 15px;
}

.contact-card a {
    color: #667eea;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #764ba2;
}

.qr-code {
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-code img {
    border-radius: 10px;
    padding: 10px;
    background: white;
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-right {
        position: relative;
        top: 0;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
}
