
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Montserrat', sans-serif;
    user-select: none;
    width: 100%;
    height: 100%;
    background-color: #f5f2ef;
}

.pricelist-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 2rem;
}

.pricelist-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.price-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}


.package-title {
    color: #4a4a4a;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.price {
    color: #8B4513;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}

.description {
    color: #666;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.features {
    list-style: none;
    margin-top: auto;
}

.feature {
    color: #4a4a4a;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.feature::before {
    content: "✅";
    color: #8B4513;
}

.card {
    font-family: 'Montserrat', sans-serif;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    margin-top: 1.5rem;
    background-color: #8B4513;
    color: white;
    border: none;
    font-weight: 600;
}

.card:hover {
    transform: scale(1.05);
    background-color: #8b4513ec;
}
