.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-hero,
.section-services,
.section-why,
.section-cta {
    padding: 80px 0;
}

.hero-title,
.section-title,
.service-title,
.cta-title {
    font-weight: 600;
    letter-spacing: -0.5px;
}

.hero-title {
    font-size: 42px;
}

.section-title {
    font-size: 32px;
    margin-bottom: 12px;
}

.service-title {
    font-size: 20px;
    margin-bottom: 8px;
}

.hero-desc,
.section-desc,
.service-desc,
.cta-desc {
    font-size: 16px;
    color: #444;
}

.section-desc {
    max-width: 700px;
    margin-bottom: 48px;
    color: #555;
}

.contact-button {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    background: #fff;
    color: #000;
    border: 1px solid #fff;
    transition: all 0.3s ease;
}

.secondary-button {
    display: inline-block;
    padding: 14px 34px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #000;
    background: transparent;
    color: #000;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.secondary-button:hover {
    background: #000;
    color: #fff;
}

.section-hero {
    background: #000;
    color: #fff;
    min-height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.section-hero .hero-desc {
    color: #ddd;
}

.content-touch {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

.section-services {
    background: #fff;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.service-item {
    border: 1px solid #e5e5e5;
    padding: 28px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-6px);
    border-color: #000;
}

.section-why {
    background: #f7f7f7;
}

.why-list {
    list-style: none;
    max-width: 700px;
}

.why-list li {
    padding-left: 28px;
    margin-bottom: 14px;
    position: relative;
    color: #333;
}

.why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

.section-cta {
    background: #000;
    color: #fff;
    text-align: center;
}

.section-cta .cta-desc {
    color: #ccc;
    max-width: 700px;
    margin: 20px auto 40px;
}

@media (max-width: 992px) {
    .service-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {

    .section-hero,
    .section-services,
    .section-why,
    .section-cta {
        padding: 60px 0;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 28px;
    }
}