body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #37474f;
    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 {
    color: #ffca28;
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration:none;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

.banner-section {
    position: relative;
    text-align: center;
    color: white;
    background: url('/assets/banner/default-banner.jpg') no-repeat center center/cover;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.banner-content h1 {
    font-size: 3rem;
    margin: 0;
}

.section {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 1200px;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    color: #37474f;
}

.section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ffca28;
    margin: 10px auto;
}

.section p.lead {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.about-content, 
.mission-content,
.why-choose-us-list,
.contact-content,
.faq-item {
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 800px;
}

.why-choose-us-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.why-choose-us-list li {
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #37474f;
    background: #f9f9f9;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(50% - 40px);
}

.why-choose-us-list li i {
    color: #ffca28;
    margin-right: 10px;
    flex-shrink: 0;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    text-align: left;
}

.contact-info,
.contact-form {
    flex: 1 1 45%;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.8rem;
    color: #37474f;
    margin-bottom: 10px;
}

.contact-info p,
.contact-form label {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.contact-info i {
    margin-right: 10px;
    color: #ffca28;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    background-color: #ffca28;
    color: #37474f;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #ffc107;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}



.service-text {
    flex: 1;
    padding-right: 20px;
}

.service-text h3 {
    font-size: 2rem;
    color: #37474f;
    margin-bottom: 10px;
}

.service-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.service-item img {
    width: 40%;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-cta {
    background-color: #ffca28;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 1200px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #37474f;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #333;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #37474f;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #333;
}

.faq-item {
    margin-bottom: 40px;
    text-align: left;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #37474f;
}

.faq-item p, 
.faq-item ul {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.faq-item ul {
    padding-left: 20px;
    list-style: disc;
}

footer {
    background: #37474f;
    color: #fff;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    text-align: left;
}

.footer-left, .footer-right {
    min-width: 250px;
}

.footer-left h4, .footer-right h4 {
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: #ffca28;
}

.footer-left p, .footer-right p {
    margin: 5px 0;
    font-size: 1rem;
    color: white;
}

.footer-left a, .footer-right a {
    color: #ffca28;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-left a:hover, .footer-right a:hover {
    color: #ffc107;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-icons a {
    color: #fff;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ffca28;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 0.875rem;
    color: white;
}

.footer-bottom a {
    color: #ffca28;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffc107;
}

.nav-active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .burger.toggle .line2 {
        opacity: 0;
    }
    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #37474f;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 0;
    }
    
          @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
             .call-button {
        display: block;
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #ffca28;
        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);
    }
            .burger {
                display: block;
            }
            .footer-container {
                flex-direction: column;
                align-items: center;
            }
        }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 10px 0;
    }

    .burger {
        display: block;
    }

    .nav-links.active {
        display: flex;
    }

    .banner-content h1 {
        font-size: 2.5rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .section p.lead {
        font-size: 1.2rem;
    }

    .about-content, 
    .mission-content,
    .why-choose-us-list,
    .contact-content,
    .faq-item {
        font-size: 0.9rem;
    }

    .why-choose-us-list li,
    .contact-info,
    .contact-form,
    .faq-item h3,
    .faq-item p,
    .faq-item ul {
        font-size: 1rem;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        flex: 1 1 100%;
    }

    .service-item {
        flex-direction: column;
    }

    .service-item img {
        width: 100%;
        margin-top: 20px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left, .footer-right {
        min-width: 100%;
    }

    .social-icons {
        justify-content: center;
    }
}

@media(min-width:768px)
{
    .service-item:nth-child(even) {
        flex-direction: row-reverse;
    }
}