/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #343a40;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover,.logo a:hover {
    color: #ff7f50;
}

.logo {
    color: 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: 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;
}

h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff7f50;
    margin: 10px auto;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

.lead {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.about-content, .pricing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.about-image, .pricing-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.about-content p, .pricing-content p {
    text-align: left;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ff7f50;
}

ul {
    text-align: left;
    padding-left: 20px;
    margin: 10px 0;
}

footer {
    background: #343a40;
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer a {
    color: #ff7f50;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ff5722;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

label {
    flex: 1;
    font-weight: bold;
    font-size: 1rem;
    color: #333;
    margin-right: 10px;
}

input, textarea {
    flex: 2;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

textarea {
    height: 100px;
    resize: vertical;
}

button {
    background-color: #ff7f50;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    width: 100%;
}

button:hover {
    background-color: #ff5722;
}

#contact p {
    margin-top: 20px;
    font-size: 1rem;
    color: #333;
}

#cta {
    background-color: #ff7f50;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

#cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #f8f9fa;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

#cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.cta-button {
    background-color: white;
    color: #ff7f50;
    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: #ff5722;
    color: white;
}

.call-button{
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #343a40;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 0;
    }
    
     .call-button {
        display: block;
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #ff7f50;
        color: white;
        padding: 15px;
        border-radius: 50%;
        text-align: center;
        box-shadow: 0 0 10px var(--box-shadow-color);
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .call-button i {
        font-size: 1.5rem;
    }
    
    .call-button:hover {
        background-color: var(--accent-color);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 10px 0;
    }

    .burger {
        display: block;
    }

    .nav-links.active {
        display: flex;
    }

    .about-content, .rates-content, .pricing-content {
        flex-direction: column;
    }

    .rate-card, .about-section, .why-card, .about-image, .pricing-image {
        max-width: 100%;
    }

    .rate-icon, .why-icon {
        margin-bottom: 10px;
    }

    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;
    }
}
