:root {
    --primary-color: #1A237E; /* Indigo */
    --secondary-color: #C62828; /* Red */
    --accent-color: #FFEB3B; /* Yellow */
    --background-color: #ECEFF1; /* Light Gray */
    --text-color: #263238; /* Dark Gray */
    --white: #FFFFFF; /* White */
    --light-gray: #CFD8DC; /* Light Gray */
    --dark-gray: #37474F; /* Dark Gray */
    --box-shadow-color: rgba(0, 0, 0, 0.15); /* Box Shadow Color */
}


body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--box-shadow-color);
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover, .logo a:hover {
    color: var(--accent-color);
}

.logo {
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px;
    transition: all 0.3s ease;
}

section {
    padding: 60px 20px;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    color: var(--text-color);
}

h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

.lead {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px var(--box-shadow-color);
}

.about-image {
    flex: 1 1 45%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px var(--box-shadow-color);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    flex: 1 1 45%;
    text-align: left;
    padding: 20px;
}

.about-text p {
    margin-bottom: 15px;
}

.approach-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.approach-card {
    flex: 1 1 calc(50% - 20px);
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px var(--box-shadow-color);
    text-align: left;
}

.approach-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.approach-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 15px;
}

#cta {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
}

#cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

#cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--dark-gray);
    color: var(--white);
}

footer {
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 20px;
}

footer a {
    color: var(--accent-color);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--dark-gray);
}

.call-button {
    display: none;
}

.pricing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px var(--box-shadow-color);
}

.pricing-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.pricing-details {
    text-align: left;
}

.price-category {
    margin-bottom: 20px;
}

.price-category h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.price-category p {
    margin-bottom: 10px;
    color: var(--text-color);
}

.price-category ul {
    padding-left: 20px;
    margin: 10px 0;
}



@media (max-width: 768px) {
    .pricing-content {
        flex-direction: column;
    }

    .pricing-image, .price-category, .cta-container {
        max-width: 100%;
    }

    .pricing-image img, .price-category img {
        width: 100%;
        height: auto;
    }
    .call-button {
        display: block;
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        background-color: var(--primary-color);
        color: var(--white);
        border-radius: 50%;
        box-shadow: 0 4px 8px var(--box-shadow-color);
        text-align: center;
        line-height: 60px;
        font-size: 24px;
        z-index: 1000;
    }
    
    .call-button:hover {
        background-color: var(--accent-color);
        color: var(--dark-gray);
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--secondary-color);
        position: absolute;
        top: 60px;
        left: 0;
        padding: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 10px 0;
    }

    .burger {
        display: block;
    }

    .nav-links.active {
        display: flex;
    }

    .about-content, .approach-content {
        flex-direction: column;
    }

    .about-image, .approach-card {
        max-width: 100%;
    }

    .about-image img, .approach-card img {
        width: 100%;
        height: auto;
    }

    form {
        padding: 15px;
    }

    .form-group {
        flex-direction: column;
        align-items: flex-start;
    }

    label {
        text-align: left;
        margin-bottom: 5px;
    }

    button {
        padding: 10px 20px;
    }

    textarea {
        height: 80px;
    }
}