body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
    color: #f5f5f5;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1f1f1f;
    padding: 15px 30px;
    border-bottom: 2px solid #ffcc00;
}

header h1 {
    font-size: 1.4em;
    color: #ffcc00;
    margin: 0;
}

header p {
    margin: 0;
    font-weight: bold;
}

/* Section principale */
.hero {
    background: url('images/El Chicharito que me sacó adelante - Opulix.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    padding-left: 50px;
    color: #fff;
}

.hero .info {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
}

.hero h2 {
    margin: 0;
    font-size: 2em;
    color: #ffcc00;
}

.hero p {
    margin: 10px 0;
    font-size: 1.1em;
}

.hero a {
    margin: 10px 0;
    font-size: 1.1em;
}
a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
.hero .highlight {
    font-weight: bold;
    color: #ffcc00;
    margin-top: 15px;
}

/* Section services et zones */
.content {
    display: flex;
    justify-content: space-between;
    padding: 50px 20px;
    flex-wrap: wrap;
    background-color: #1a1a1a;
}

.left-column, .right-column {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.left-column div, .right-column div {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

h3 {
    color: #ffcc00;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 5px;
}

p {
    font-size: 18px;
}

/* Section contact */
.contact {
    text-align: center;
    padding: 40px 20px;
    background-color: #121212;
    font-size: 1.3em;
}

.contact span {
    color: #ffcc00;
    font-weight: bold;
}

.contact .reliable-text {
    margin-top: 15px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #1f1f1f;
    border-top: 2px solid #ffcc00;
    color: #aaa;
    font-size: 0.9em;
}

/* Responsive */
@media (max-width: 768px) {
    .left-column, .right-column {
        width: 100%;
    }

    .hero {
        padding: 20px;
    }
}
