* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

:root{
    --page_bg: #f5f7fc;
    --page_color: #1a1a2e;
    --header_bg: #1c1b1b;
    --header_line: #8066ff;
}

header{
    background: var(--header_bg);
    border-bottom: solid 3px var(--header_line);
}


.price-page {
    background: #f5f7fc;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

main{
    flex-grow: 1;
}

.price_subtitle{
    font-size: 2.5rem;
    color: #8066ff;
    text-align: center;
}

.price {
    margin-top: 2rem;
    padding: 1rem 2rem;
    border: solid 3px #dce5f5;
    border-radius: 15px;
    font-family: 'Roboto', sans-serif;
}

.price h1 {
    margin-top: 2rem;
    margin-bottom: 4rem;
    font-size: 2.2rem;
    color: #1a1a2e;
}

.price_widgets {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    width: 100%;
    margin: 0 auto;
    gap: 1rem;
}


.widget{
    width: 100%;
    padding: 0rem 1rem;
    background: #ffffff;
    border: solid 2px #dce5f5;
    border-radius: 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column; 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.widget__content {        
    flex: 1;
}

.widget_title{
    font-size: 1.5rem;
    color: #1a1a2e;
    font-weight: 700;
    margin-top: 1rem;
}
.widget_price{
    color: #8066ff;
    font-size: 1.45rem;
    font-weight: 700;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.widget_decoration{
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #6d7380;
    margin-top: auto;
}

.price .price_info{
    color: #8066ff;
    font-size: 1rem;
    margin: 1rem 0rem;
    font-weight: 600;
}

.info{
    font-size: 1.4rem;
    color: #1a1a2e;
    margin-top: 2rem;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.info p{
    margin-bottom: 1rem;
}

footer{
    background: #1c1b1b;
}