/* Modern Minimal Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fafafa;
    color: #2c3e50;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.page-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
}

.image-container {
    position: relative;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    transition: transform 0.3s ease;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
}

.main-image:hover {
    transform: translateY(-8px);
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); */
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    color: #1a202c;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #9d38ee 0%, #6CF7A9 100%);
    border-radius: 2px;
}

.text-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 400;
    color: #64748b;
    margin-top: 0.5rem;
    line-height: 1.3;
}

/* Copyright Footer */
.copyright {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
}

.copyright p {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 300;
}

.copyright-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.copyright-link:hover {
    color: #764ba2;
    text-decoration: none;
}

.copyright-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #9d38ee 0%, #6CF7A9 100%);
    transition: width 0.3s ease;
}

.copyright-link:hover::after {
    width: 100%;
}

.copyright-link:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2.5rem 2rem;
        text-align: center;
    }
    
    .text-content {
        padding-left: 0;
        order: -1;
    }
    
    .main-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }
    
    .main-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    body {
        padding: 1rem 0.5rem;
    }
    
    .main-content {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .main-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        margin-bottom: 1rem;
    }
}

/* Subtle animation on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Focus states for accessibility */
.main-image:focus {
    outline: 3px solid #667eea;
    outline-offset: 4px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .main-content {
        animation: none;
    }
    
    .main-image {
        transition: none;
    }
    
    .main-image:hover {
        transform: none;
    }
}