/* Offering page specific styles */

.hero {
    padding: 8rem 0 4rem;
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.button-primary {
    background-color: var(--accent-color);
    color: white;
}

.button-primary:hover {
    background-color: #1D4ED8;
}

.button-secondary {
    background-color: white;
    color: var(--accent-color);
    border: 1px solid var(--border-color);
}

.button-secondary:hover {
    background-color: #F9FAFB;
}

.grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 3rem;
}

.card {
    padding: 2rem;
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.price-card {
    text-align: center;
    padding: 2rem;
}

.price-card h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.price-description {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

/* For the grid with inline style */
.pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* For the images with inline style */
.card-image {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    object-fit: cover;
}

@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }

    .button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .price {
        font-size: clamp(2rem, 5vw, 3rem);
    }
}
