/* Common amenities section */
.common-amenities {
    margin-top: 4rem;
    background-color: #f9fafb;
    border-radius: 0.75rem;
    padding: 2rem;
}

.common-amenities h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.amenity-item {
    display: flex;
    align-items: center;
}

.amenity-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    color: #0d9488;
}

.amenity-text {
    color: #4b5563;
}



/* Container styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section styles */
#amenities {
    padding: 5rem 0;
    background-color: #f9fafb;
}

/* Header styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
}

/* Grid layout */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Amenity card styles */
.amenity-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.amenity-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ecfdf5;
    color: #0d9488;
    border-radius: 9999px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.amenity-icon i {
    font-size: 1.5rem;
}

.amenity-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.amenity-description {
    color: #4b5563;
}

/* Call to action section */
.cta-container {
    margin-top: 4rem;
    background-color: #0d9488;
    color: white;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #0d9488;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #f3f4f6;
}

