body {
    background-color: black;
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
}

p, h1, h2, h3 {
    color: white;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* New styles for div structure */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
}

.header {
    text-align: center;
    padding: 20px 0;
    border-bottom: 2px solid #333;
    border-radius: 10px 10px 0 0;
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

nav a {
    padding: 10px 20px;
    background: #333;
    border-radius: 8px;
    border: 1px solid #555;
}

nav a:hover {
    background: #555;
}

.hero {
    text-align: center;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.image-container {
    text-align: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid #444;
    box-shadow: 0 4px 8px rgba(255,255,255,0.05);
}

.details-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-card {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #444;
    border-left: 4px solid #ccc;
}

.detail-card h3 {
    margin-top: 0;
    color: #ccc;
}

.footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    opacity: 0.8;
    background: #111;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    nav {
        flex-direction: column;
        align-items: center;
    }
}

