.hero h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.container {
    max-width: 1100px;
    margin: 0 auto;

}

.card {

    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 35px;
    margin-bottom: 30px;
}

.card h2 {
    font-size: 24px;
    color: #2e7d32;
    margin-bottom: 20px;
}

.card p {
    margin-bottom: 15px;
}

.card ul {
    padding-left: 20px;
    list-style: none;
}

.card ul li::before {
    content: "✅ ";
    color: #2e7d32;
    margin-right: 8px;
}

.card ul li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }

    .card {
        padding: 25px;
    }




}

body {
    font-family: 'Poppins', sans-serif;

    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1100px;
    margin: auto;

}

h1 {
    font-size: 32px;
    color: #2e7d32;
    text-align: center;
    margin-bottom: 25px;
}

p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.section-title {
    font-size: 22px;
    color: #1b5e20;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.features-list,
.amenities-list,
.price-factors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.features-list div,
.amenities-list div,
.price-factors div {
    background: #f7f6f6;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.features-list div::before,
.amenities-list div::before,
.price-factors div::before {
    content: "✅ ";
    color: #2e7d32;
    font-weight: bold;
}

.note-box {
    background: #fff3cd;
    border-left: 5px solid #ffca2c;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 15px;
    color: #856404;
    margin-top: 20px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }

    .features-list,
    .amenities-list,
    .price-factors {
        grid-template-columns: 1fr;
    }
}

.location-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 20px;
}

.location-section h2 {
    font-size: 30px;
    color: #2e7d32;
    margin-bottom: 20px;
    text-align: center;
}

.location-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: center;
    color: #444;
}

.landmarks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.landmark {

    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s ease;
}

.landmark:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.icon {
    font-size: 22px;
    color: #2e7d32;
}

.landmark-text {
    font-size: 15px;
    color: #333;
}

.location-note {
    margin-top: 30px;

    border-left: 4px solid #66bb6a;
    padding: 18px;
    border-radius: 8px;
    color: #2e7d32;
    font-size: 15px;
}

@media (max-width: 768px) {
    .landmarks {
        grid-template-columns: 1fr;
    }
}

.faq-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 20px;
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    color: #2e7d32;
    margin-bottom: 30px;
}

.accordion {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 10px;
    overflow: hidden;
    transition: 0.3s ease;
}

.accordion-header {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    background-color: #e8f5e9;
    border-left: 4px solid #66bb6a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-body {
    padding: 18px 20px;
    display: none;
    font-size: 15px;
    background-color: #ffffff;
}

.accordion.active .accordion-body {
    display: block;
}

.accordion-header::after {
    content: '+';
    font-size: 20px;
    transition: 0.3s;
}

.accordion.active .accordion-header::after {
    content: '-';
}