body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #1a1a1a;
    color: #f4f4f4;
    padding: 2rem 0;
    text-align: center;
    border-bottom: 3px solid #d32f2f;
}

header h1 {
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

nav {
    background-color: #555;
    padding: 1rem 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: bold;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 1rem;
}

.container {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: auto;
}

/* THE HERO GRID - FORCED 2x2 */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Explicitly 2 columns */
    gap: 20px;
    margin: 20px 0 40px 0;
}

.hero-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: translateY(-5px);
}

/* PROCESS SECTION */
.process-section {
    background-color: #2c2c2c;
    padding: 60px 0;
    color: white;
}

.product {
    background: #ffffff; 
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center; 
    gap: 2rem; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: #333;
} /* Fixed the missing brace here */

.product h3 {
    margin: 0 0 10px 0;
    color: #d32f2f;
}

.step-icon {
    background: #fdf2f2;
    color: #d32f2f;
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 850px) {
    .hero-grid {
        grid-template-columns: 1fr; /* Stacks to 1 column on tablets/phones */
    }
    .hero-img {
        height: 400px;
    }
    .product {
        flex-direction: column;
        text-align: center;
    }
}

#about {
    line-height: 1.8;
    color: #444;
    background-color: #fff;
    border-left: 5px solid #d32f2f; /* Linia roșie verticală */
    padding-left: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

#about h2 {
    color: #1a1a1a;
    margin-top: 0;
}
