:root {
    --primary-color: #057a8d;
    --dark-color: #171819;
    --accent-color: #f1c111;
    --light-color: #fff;
}

html {
    scroll-behavior: smooth;
}


/* Custom styles for pricing and call-to-action sections */
#pricing {
    padding: 80px 0;
    background: #f8f9fa;
}

#pricing .title-block {
    text-align: center;
    margin-bottom: 50px;
}

#pricing .title-block h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

#pricing .title-block p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.pricing-box:hover {
    transform: translateY(-10px);
}

.pricing-box h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.pricing-box h3.demo {
    color: #6c757d;
}

.pricing-box h6 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.pricing-box small {
    font-size: 0.9rem;
    color: #666;
}

.pricing-box p {
    font-size: 1rem;
    color: #666;
    margin: 15px 0;
}

.divider-light {
    border-top: 1px solid #e9ecef;
    margin: 20px 0;
}

.pricing-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-box ul li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-box ul li i {
    font-size: 1.2rem;
    color: #28a745;
    margin-right: 10px;
}

.pricing-box ul li span {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
}

.pricing-box ul li span.demo {
    color: #6c757d;
}

.btn-demo {
    background: #6c757d;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-demo:hover {
    background: #5a6268;
    color: #fff;
}

.btn-buy {
    background: var(--primary-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    cursor: pointer;
    font-size: var(--p-font-size);
    line-height: 0px;
    padding: 1.5em 1.3em;
}

.btn-buy:hover {
    background: var(--accent-color);
    color: #fff;
}

#call-to-action {
    padding: 60px 0;
    background: var(--primary-color);
    color: #fff;
}

#call-to-action h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

#call-to-action .title-block p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--light-color);
}

.btn-regular {
    background: #fff;
    color: var(--accent-color);
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-regular:hover {
    background: #f8f9fa;
    color: var(--accent-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-box {
        margin-bottom: 20px;
    }

    #pricing .title-block h2 {
        font-size: 2rem;
    }

    #call-to-action h2 {
        font-size: 2rem;
    }
}