/* Responsive Design */
@media (max-width: 1200px) {
    .nav-arrow.prev {
        left: -30px;
    }
    
    .nav-arrow.next {
        right: -30px;
    }
}

@media (max-width: 768px) {
    .project-slide {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        height: auto;
        min-height: 500px;
    }
    
    .project-content {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .project-content h3 {
        font-size: 1.8rem;
    }
    
    .project-image-large {
        max-width: 100%;
        width: 100%;
        height: 200px;
    }
    
    .nav-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .nav-arrow.prev {
        left: 10px;
    }
    
    .nav-arrow.next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .project-slide {
        padding: 30px 20px;
        min-height: 450px;
    }
    
    .project-content h3 {
        font-size: 1.5rem;
    }
    
    .project-content p {
        font-size: 1rem;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .education {
        flex-direction: column;
        gap: 40px;
    }
    
    .education-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .illustration-wrapper {
        width: 300px;
        height: 300px;
    }
    
    .hero-image {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-info h2 {
        font-size: 1.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .illustration-wrapper {
        width: 250px;
        height: 250px;
    }
    
    .hero-image {
        max-width: 250px;
    }
}