/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Container Styles */
.package-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.package-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Package Card Styles */
.package-card {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card.highlighted {
    background-color: #fff9e6;
    border: 1px solid #ffd700;
}

/* Package Header Styles */
.package-header {
    text-align: center;
    margin-bottom: 20px;
}

.package-header h3 {
    font-size: 1.25rem;
    color: #1e3c72;  /* Your website's blue color */
    margin-bottom: 10px;
    font-weight: 600;
}

.price {
    margin-bottom: 15px;
}

.amount {
    font-size: 1.75rem;
    font-weight: bold;
    color: #333;
}

.per-sqft {
    font-size: 0.875rem;
    color: #666;
}

/* Feature Styles */
.features {
    flex-grow: 1;
}

.feature {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    cursor: pointer;
    color: #1e3c72;  /* Your website's blue color */
    font-weight: 500;
}

.toggle-icon {
    color: #1e3c72;
    font-size: 1rem;
}

.feature-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.feature-details ul {
    list-style: none;
    padding: 10px 0;
}

.feature-details li {
    padding: 4px 0;
    color: #666;
    font-size: 0.875rem;
    position: relative;
    padding-left: 15px;
}

.feature-details li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1e3c72;
}

/* Button Styles */
.details-btn {
    width: 100%;
    padding: 12px 20px;
    background-color: #c4aa76;  /* Your website's golden button color */
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.details-btn:hover {
    background-color: #b39a65;  /* Slightly darker shade for hover */
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .package-card {
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .package-card {
        min-width: 100%;
        max-width: 100%;
    }
}

/* Animation for feature details */
.feature-details.active {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}