body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #FFF8E1;
    color: #026246;
}

header {
    position: relative; /* Added position relative */
    background-image: url('trees.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select:none;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1; /* Set z-index to place it below the content */
}
.intro{
    text-align: center;
    margin: 50px;
}
.services-h2 {
text-align: center;
margin-top: 25px;
}
.logo {
    position: relative;
    z-index: 2;
    text-align: center;
}

.logo img {
    max-width: 100%;
    height: auto;
    max-height: 140px;
}

nav {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #FFF8E1;
    font-weight: bold;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #FFF8E1;
    position: fixed;
    top: 15px;
    right: 15px;
    transition: color 0.3s ease-in-out;
    z-index: 100;
}

.hamburger.scrolled {
    color: #026246;
}

.hamburger.active {
    color: #026246;
    z-index: 5;
}

.hamburger.active:hover {
    transform: scale(1);
}

.main-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

h1, h2 {
    color: #026246;
}
.intro h2 {
    margin-bottom: 2px;
}
p {
    margin-bottom: 20px;
}

.price-container {
    margin-top: 1px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.price-card {
    flex-basis: calc(33.33% - 40px);
    box-sizing: border-box;
    margin: 20px;
    padding: 20px;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 8px 16px rgba(2, 98, 70, 0.2);
    background-color: #FFF;
    color: #026246;
    border: 1px solid #026246;
    position: relative;
    border-image: linear-gradient(90deg, #026246, #FFF8E1);
    border-image-slice: 1;
    transform: scale(1);
}

.price-card:hover {
    transform: scale(1.05);
}

.card-header {
    background-color: #026246;
    color: #FFF;
    padding: 15px;
    border-radius: 15px 15px 0 0;
    user-select: none;
    cursor: pointer;
}

.card-content {
    padding: 15px;
    display: none;
}

.price-card.expanded {
    transform: scale(1.05);
}

.price-card.expanded .card-content {
    display: block;
}



footer {
    position: relative; /* Added position relative */
    background-image: url('trees.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
        user-select:none;
    padding: 10px;
    text-align: center;
    color: #FFF8E1;
    z-index: 2; /* Set a higher z-index to place it above the pseudo-element overlay */
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1; /* Set z-index to place it below the content */
}
@media screen and (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center; /* Center the items horizontally */
        background-color: #776d52;
        position: absolute;
        top: 185px;
        left: 0;
        width: 100%;
        display: none;
        z-index: 4;
    }

    .hamburger {
        display: block;
        position: fixed;
        top: 15px;
        right: 15px;
        font-size: 24px;
        color: #FFF8E1;
        transition: color 0.3s ease-in-out;
        z-index: 100;
    }

    .intro {
        text-align: center;
        margin: 5px;
    }

    nav.show {
        display: flex;
        align-items: center; /* Center the items horizontally */
    }

    nav.show ul {
        display: block;
        text-align: center;
        padding: 0; /* Remove default padding */
    }
    nav ul li a {
        text-decoration: none;
        color: #FFF8E1;
        font-weight: bold;
        padding: 15px; /* Add more padding to the menu options */
        display: block;
        transition: color 0.3s ease-in-out;
    }

    nav ul {
        display: none; /* Hide the links initially */
        margin: 0; /* Remove default margin */
    }

    .hamburger {
        display: block;
    }
      .price-card {
        flex-basis: calc(100% - 40px); /* Set width to 100% for mobile */
        width: calc(100% - 40px); /* Set width to 100% for mobile */
    }
}

