* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #f7b733 0%, #fc4a1a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    text-align: center;
    position: relative;
}

.content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.image-container {
    margin-bottom: 40px;
    position: relative;
}

#mainImage {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
}

#mainImage:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Placeholder for when no image is loaded */
.image-placeholder {
    width: 300px;
    height: 200px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px dashed rgba(255, 255, 255, 0.5);
}

.image-placeholder span {
    font-size: 1.2rem;
    opacity: 0.7;
}

.text-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.text-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-info p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.contact-info a:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

footer {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content {
    animation: fadeInUp 0.8s ease-out;
}

.image-container {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.text-content {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 10px;
    }
    
    .content {
        padding: 30px 20px;
        margin: 10px;
        border-radius: 15px;
    }
    
    .text-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .text-content p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    #mainImage {
        max-height: 200px;
        width: 100%;
        object-fit: contain;
    }
    
    .image-container {
        margin-bottom: 30px;
    }
    
    .contact-info {
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .contact-info a {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    footer {
        position: relative;
        margin-top: 30px;
        transform: none;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 25px 15px;
        margin: 5px;
    }
    
    .text-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .text-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    #mainImage {
        max-height: 180px;
    }
    
    .image-container {
        margin-bottom: 25px;
    }
    
    .contact-info {
        margin-top: 25px;
        padding-top: 15px;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .contact-info a {
        padding: 8px 16px;
        font-size: 0.9rem;
        display: block;
        text-align: center;
        margin-top: 15px;
    }
}

/* Extra small devices */
@media (max-width: 320px) {
    .content {
        padding: 20px 10px;
    }
    
    .text-content h1 {
        font-size: 1.8rem;
    }
    
    .text-content p {
        font-size: 0.95rem;
    }
    
    #mainImage {
        max-height: 150px;
    }
}

/* Background animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 193, 7, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 152, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 235, 59, 0.3) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundShift 10s ease-in-out infinite alternate;
}

@keyframes backgroundShift {
    0% {
        transform: translateX(-10px) translateY(-10px);
    }
    100% {
        transform: translateX(10px) translateY(10px);
    }
}