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 {
    color: #ff7f50;
}

.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;
}

.blog {
    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;
}

.blog h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    color: #37474f;
}

.blog h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ffca28;
    margin: 10px auto;
}

.blog-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.blog-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    text-align: left;
}

.blog-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    height: 300px;
}

.blog-content h3 {
    font-size: 1.8rem;
    color: #37474f;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.blog-content .read-more {
    display: inline-block;
    margin-top: 10px;
    color: #ffca28;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.blog-content .read-more:hover {
    color: #ffc107;
}

footer {
    background: #343a40;
    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;
}

.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: #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;
    }

    .banner-content h1 {
        font-size: 2.5rem;
    }

    .blog-item {
        flex: 1 1 100%;
    }
}
