body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #1c2526;
    color: #e6e6e6;
    overflow-x: hidden;
}

.header {
    background: linear-gradient(to right, #2f3839, #3b4b4c);
    padding: 15px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.header-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.logo {
    width: 80px;
    height: 80px;
}

.header h1 {
    font-size: 1.8em;
    color: #48bb78;
    margin: 0;
    flex-grow: 1;
    text-align: center;
}

.phone-container {
    display: flex;
    gap: 10px;
}

.phone-link {
    color: #ed8936;
    text-decoration: none;
    font-size: 1.1em;
    white-space: nowrap;
}

.phone-link:hover {
    color: #dd6b20;
}

.nav {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.nav a {
    color: #e6e6e6;
    text-decoration: none;
    margin: 0 12px;
    font-size: 1em;
    font-weight: 500;
}

.nav a:hover {
    color: #48bb78;
    text-decoration: underline;
}

.hero {
    position: relative;
    text-align: center;
    min-height: 280px;
    margin-bottom: 20px;
}

.hero-video {
    width: 100%;
    max-width: 600px;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

@media (min-width: 768px) {
    .hero-video {
        max-width: 100%;
        height: 360px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(72, 187, 120, 0.85);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
}

.hero-text h2 {
    margin: 0;
    font-size: 1.6em;
}

.hero-text p {
    margin: 5px 0 0;
    font-size: 1em;
}

.services-section {
    padding: 20px;
    background-color: #2f3839;
    text-align: center;
}

.services-section h2 {
    color: #48bb78;
    margin-bottom: 15px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.service-item {
    background: #3b4b4c;
    padding: 15px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
}

.service-item h3 {
    color: #ed8936;
    margin-bottom: 10px;
}

.service-video {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 6px;
}

.service-item p {
    margin-top: 10px;
    line-height: 1.5;
    color: #e6e6e6;
}

.contact-section {
    padding: 20px;
    background-color: #1c2526;
    text-align: center;
}

.contact-section h2 {
    color: #48bb78;
    margin-bottom: 15px;
}

.contact-container {
    max-width: 500px;
    margin: 0 auto;
}

.contact-icon {
    vertical-align: middle;
    margin-right: 8px;
}

.contact-container p {
    margin: 8px 0;
    font-size: 1em;
    color: #e6e6e6;
}

.contact-container a {
    color: #ed8936;
    text-decoration: none;
}

.contact-container a:hover {
    color: #dd6b20;
}

.whatsapp-links {
    margin-top: 10px;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #4fd1c5;
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    margin: 5px;
    font-size: 0.9em;
}

.whatsapp-btn:hover {
    background-color: #38b2ac;
}

.footer {
    background-color: #2f3839;
    color: #e6e6e6;
    text-align: center;
    padding: 10px;
    font-size: 0.85em;
}

.footer p {
    margin: 3px 0;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 1.4em;
    }
    .phone-link {
        font-size: 1em;
    }
    .nav a {
        margin: 0 8px;
        font-size: 0.9em;
    }
    .hero-text h2 {
        font-size: 1.3em;
    }
    .hero-text p {
        font-size: 0.9em;
    }
    .service-item {
        max-width: 100%;
    }
}