/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 20px;
}

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

.product-name, .agency-prices, .purchase-duration {
    margin-bottom: 20px;
}

.name-tabs, .price-cards, .duration-select {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.name-tabs button, .duration-select button {
    padding: 10px 20px;
    border: 1px solid #ccc;
    background-color: #fff;
    cursor: pointer;
}

.name-tabs button.active, .duration-select button.active {
    border-color: #007bff;
}

.agency-prices span, .purchase-duration span {
    font-weight: bold;
}

.price-cards {
    justify-content: space-between;
}

.price-card {
    flex: 1;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
    cursor: pointer;
}

.price-card.active {
    border-color: #007bff;
}

.card-header {
    font-weight: bold;
    margin-bottom: 10px;
}

.storage {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 10px;
}

.price {
    font-size: 18px;
}

.price span {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}
