* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}


.other-hero {
    height: 70vh;
    background: url("images/other_event.png") center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(179,106,94,0.40),
        rgba(179,106,94,0.40)
    );
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    color: #fff;
    max-width: 650px;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-overlay p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.hero-btn {
    width: fit-content;
    background: #eee2df;
    color: #b36a5e;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #c89f9c;
    color: #fff;
}


.other-services {
    background: #eee2df;
    padding: 70px 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #b36a5e;
    margin-bottom: 10px;
}

.section-title p {
    color: #555;
    font-size: 16px;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}


.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.15);
    border: 2px solid #bc8c80;

}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 18px 20px 5px;
    color: #b36a5e;
    font-size: 22px;
}

.service-card p {
    padding: 0 20px 25px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}


@media (max-width: 768px) {
    .hero-overlay {
        padding: 40px 25px;
    }

    .hero-overlay h1 {
        font-size: 34px;
    }
}
