.about-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    min-height: 250px;
    padding: 60px 20px;

    background-image: url("../images/servicesimg/hero.jpg");
    background-size: cover;
    background-position: center 50%;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.695);
    z-index: 1;
}

.about-hero h2,
.about-hero p {
    position: relative;
    z-index: 2;
    color: white;
}

.about-hero h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.about-hero p {
    font-size: 1.8rem;
}

/* ===== Layout ===== */
.services-page,
.secondary-services {
    padding: 40px 10%;
    background-color: #f0f0f08c;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* ===== Cards ===== */
.service-card {
    background: white;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* Headings */
.service-card h3 {
    font-size: 1.4rem;
    margin: 30px;
    padding-top: 20px;
    position: relative;
}

.service-card h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background-color: #1c5212a1;
}

.service-card h4 {
    font-size: 1.2rem;
    margin: 20px;
}

/* Text */
.service-card p {
    margin: 0 20px 20px;
    line-height: 1.4;
    color: #333;
    font-size: 1.1rem;
}

.service-card li {
    margin: 0 20px 10px;
    line-height: 1.4;
    color: #333;
    font-size: 1.1rem;
}

.service-card ul {
    margin: 0 0 20px;
}

/* Tiers */
.service-tier {
    margin: 0 20px 20px;
}

/* ===== BOOK NOW BUTTON (MATCHES CONTACT FORM BUTTON) ===== */
.services-button {
    text-align: center;
    padding: 30px 0;
    background-color: #f0f0f08c;
}

.services-button .btn {
    display: inline-block;
    padding: 14px 20px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 8px;

    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;

    transition: all 0.4s ease-in-out;
}

.services-button .btn:hover {
    background-color: rgba(255, 186, 38, 0.8);
    color: black;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

footer {
    background-color: rgba(0, 0, 0, 0.832);
    color: white;
    padding: 30px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}