:root {
    --primary-color: #8B4B8E;
    --secondary-color: #F3E5F5;
    --text-color: #333;
    --background-color: #FFFFFF;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.subheader {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 30px;
}

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #6A3A6C;
}

.arrow-down {
    font-size: 2rem;
    margin-top: 15px;
    color: var(--primary-color);
}

section {
    margin-bottom: 40px;
    text-align: center;
}

.steps {
    display: flex;
    justify-content: space-between;
}

.step {
    flex: 1;
    padding: 20px;
    background-color: var(--secondary-color);
    margin: 0 10px;
    border-radius: 10px;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.advantages ul {
    list-style-type: none;
}

.advantages li {
    margin: 10px 0;
}

.testimonials .testimonial {
    background-color: var(--secondary-color);
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
}

.faq details {
    margin: 15px 0;
    text-align: left;
}

.final-cta {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
}

.additional-calculators {
    margin-bottom: 40px;
    text-align: center;
}

.calculator-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.calculator-item {
    flex: 1;
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.calculator-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.calculator-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.calculator-item p {
    margin-bottom: 15px;
    text-align: center;
}

.calculator-item .cta-button {
    margin-top: auto;
}

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    margin: 0 15px;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .container {
        padding: 10px;
    }

    h1 {
        font-size: 2rem;
    }

    .subheader {
        font-size: 1rem;
    }

    .steps {
        flex-direction: column;
    }

    .step {
        margin: 10px 0;
    }

    .calculator-grid {
        flex-direction: column;
    }

    .calculator-item {
        margin-bottom: 15px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        margin: 15px 0;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    .container {
        padding: 5px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .calculator-icon {
        font-size: 2.5rem;
    }
}