* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, serif;
    background: #f7f7f7;
    color: #333;
    line-height: 1.6;
}

/* HERO */

.hero {
    position: relative;
    height: 520px;
    background-image: url('../images/event-services/two-asian-women.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 54px;
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* SERVICES */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

.service-card {
    background: #e9e9e9;
}

.service-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.service-overlay h2 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 500;
}

.service-text {
    padding: 60px 50px;
    text-align: center;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-text p {
    max-width: 420px;
    font-size: 17px;
    line-height: 2;
}

/* BOTTOM SECTION */

.bottom-section {
    text-align: center;
    padding: 100px 20px;
}

.bottom-section p {
    max-width: 900px;
    margin: 0 auto 40px auto;
    font-size: 18px;
    line-height: 2;
}

.contact-button {
    display: inline-block;
    padding: 20px 42px;
    background: #e8a6a1;
    color: white;
    font-family: 'Cormorant Garamond', serif;
    text-decoration: none;
    border-radius: 3px;
    transition: 0.3s ease;
    font-size: 18px;
}

.contact-button:hover {
    background: #d8928d;
}

.footer-brand {
    margin-top: 80px;
}

.footer-brand h3 {
    color: #d88f8f;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 500;
}

.footer-brand p {
    font-size: 15px;
    color: #666;
}

/* RESPONSIVE */

@media (max-width: 1100px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        height: 420px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .service-overlay h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {

    .hero {
        height: 360px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
        padding: 0 20px;
    }

    .service-image {
        height: 260px;
    }

    .service-text {
        padding: 40px 30px;
    }

    .service-overlay h2 {
        font-size: 26px;
    }

    .service-text p {
        font-size: 16px;
    }
}