* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', sans-serif;
}

body {
    background-color: #0a0a0a;
    color: #f5f5f5;
    line-height: 1.7;
}

.hero {
    text-align: center;
    padding: 10rem 2rem;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('gambar-baju/sky.png');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid #333;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    font-weight: 300;
}

.hero p {
    font-size: 1.4rem;
    color: #aaa;
    font-weight: 300;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: #151515;
    border-radius: 6px;
}

.benefit-card h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: #151515;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.product-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.product-description {
    color: #888;
    margin: 1rem 0;
    min-height: 60px;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

footer {
    background: #111;
    padding: 4rem 2rem;
    margin-top: 6rem;
}

.newsletter {
    max-width: 500px;
    margin: 0 auto 3rem;
    text-align: center;
}

.newsletter input {
    padding: 1rem;
    width: 100%;
    margin: 1rem 0;
    background: #222;
    border: 1px solid #333;
    color: white;
    border-radius: 4px;
}

.subscribe-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subscribe-btn:hover {
    background: #45a049;
}

.footer-info {
    text-align: center;
    margin-top: 3rem;
}

.footer-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4CAF50;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .products {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}