/* Base Styles */
:root {
    --primary-color: #0056b3;
    --secondary-color: #6c757d;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --accent-color: #ff6b00;
    --white: #ffffff;
    --black: #000000;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline-light {
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title .subtitle {
    color: var(--secondary-color);
    font-size: 18px;
}

/* Header */
.header {
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo span {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
}

.main-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu ul li {
    margin: 0 10px;
    position: relative;
}

.main-menu ul li a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 0;
    display: block;
}

.main-menu ul li a:hover {
    color: var(--primary-color);
}

.main-menu ul li.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    padding: 10px 0;
    border-radius: 4px;
}

.main-menu ul li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.main-menu ul li.dropdown .dropdown-menu li {
    margin: 0;
    padding: 0 15px;
}

.main-menu ul li.dropdown .dropdown-menu li a {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.header-contacts .phone {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.header-contacts .phone i {
    margin-right: 5px;
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--dark-color);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.mobile-menu-btn span:nth-child(1) {
    top: 0;
}

.mobile-menu-btn span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-btn span:nth-child(3) {
    bottom: 0;
}

.mobile-menu-btn.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 998;
    transition: all 0.5s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-inner {
    width: 300px;
    height: 100%;
    background-color: var(--white);
    padding: 20px;
}

.mobile-menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu nav ul li {
    margin-bottom: 15px;
}

.mobile-menu nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    display: block;
    padding: 8px 0;
}

.mobile-menu nav ul li.menu-item-has-children .sub-menu {
    padding-left: 15px;
    display: none;
}

.mobile-menu nav ul li.menu-item-has-children.active .sub-menu {
    display: block;
}

.mobile-contacts {
    margin-top: 30px;
}

.mobile-contacts .phone,
.mobile-contacts .email {
    display: block;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.mobile-contacts .phone i,
.mobile-contacts .email i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('../img/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    background-image: url("/img/background.jpg");
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.hero .lead {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

.hero-buttons {
    position: relative;
    z-index: 2;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 15px;
}

/* About Section */
.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Brands Section */
.brands-slider {
    margin: 0 -15px;
}

.brand-item {
    padding: 0 15px;
    text-align: center;
}

.brand-item img {
    max-height: 80px;
    width: auto;
    margin: 0 auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Services Section */
.service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Clients Section */
.clients-slider {
    margin: 0 -15px;
}

.client-item {
    padding: 0 15px;
    text-align: center;
}

.client-item img {
    max-height: 60px;
    width: auto;
    margin: 0 auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-item:hover img {
    opacity: 1;
}

/* Contacts Section */
.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.contact-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-text a {
    display: block;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.contact-text a:hover {
    color: var(--primary-color);
}

.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.form-control {
    height: 50px;
    border-radius: 4px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    height: auto;
    resize: none;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo a {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo span {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.footer-about {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-menu li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contacts {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.footer-contacts li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contacts li i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.footer-contacts li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contacts li a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    margin-bottom: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
}

.copyright,
.made-by {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.made-by a {
    color: rgba(255, 255, 255, 0.8);
}

/* Modal */
.modal-content {
    border-radius: 8px;
    border: none;
}

.modal-header {
    border-bottom: none;
    padding: 20px 20px 0;
}

.modal-body {
    padding: 20px;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 991.98px) {
    .section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .main-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-contacts {
        align-items: flex-end;
    }

    .hero {
        min-height: 500px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero .lead {
        font-size: 18px;
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: 50px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .about-section .col-lg-6:last-child {
        margin-top: 30px;
    }

    .contact-item {
        flex-direction: column;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .footer .col-lg-3,
    .footer .col-lg-2 {
        margin-bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    .hero {
        min-height: 400px;
        margin-top: 60px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero .lead {
        font-size: 16px;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .footer-bottom .col-md-6 {
        text-align: center;
        margin-bottom: 10px;
    }
}
/* Page Banner */
.page-banner {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), url('../img/page-banner.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    position: relative;
    margin-top: 70px;
}

.page-banner h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: #fff;
}

/* Equipment Categories */
.category-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-info {
    padding: 20px;
}

.category-info h3 {
    margin-bottom: 10px;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.product-info {
    padding: 15px;
}

.product-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
    margin: 10px 0;
}

/* Equipment Detail */
.equipment-gallery {
    margin-bottom: 30px;
}

.main-image {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.thumbnails {
    display: flex;
    margin: 0 -5px;
}

.thumbnail {
    width: 70px;
    height: 70px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 0 5px;
    overflow: hidden;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipment-meta {
    display: flex;
    flex-wrap: wrap;
    margin: 15px 0;
}

.equipment-meta span {
    margin-right: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--secondary-color);
}

.equipment-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.features-list {
    margin: 20px 0;
}

.features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.features-list i {
    margin-right: 8px;
    color: var(--primary-color);
}

.price-box {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 20px;
}

/* Equipment Tabs */
.equipment-tabs {
    margin-top: 50px;
}

.nav-tabs {
    border-bottom: 2px solid #eee;
}

.nav-tabs .nav-link {
    border: none;
    padding: 12px 25px;
    font-weight: 500;
    color: var(--secondary-color);
    border-radius: 0;
    position: relative;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background: none;
}

.nav-tabs .nav-link.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.tab-content {
    padding: 30px 0;
}

.specs-table .row {
    margin: 0 -15px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.spec-name {
    font-weight: 500;
}

.spec-value {
    color: var(--secondary-color);
}

.docs-list {
    margin-top: 20px;
}

.doc-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: var(--dark-color);
}

.doc-item i {
    font-size: 24px;
    color: #e74c3c;
    margin-right: 15px;
}

.doc-item small {
    color: var(--secondary-color);
    margin-left: auto;
}

/* Services Sidebar */
.services-sidebar {
    position: sticky;
    top: 100px;
}

.services-menu {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 30px;
}

.services-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-menu li {
    margin-bottom: 5px;
}

.services-menu li a {
    display: block;
    padding: 10px 15px;
    color: var(--dark-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.services-menu li.active a,
.services-menu li a:hover {
    background: rgba(0, 86, 179, 0.1);
    color: var(--primary-color);
}

.service-contact {
    background: var(--primary-color);
    border-radius: 8px;
    padding: 20px;
    color: #fff;
}

.service-contact h4 {
    color: #fff;
    margin-bottom: 10px;
}

.service-contact p {
    opacity: 0.8;
    margin-bottom: 15px;
}

.service-phone {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-phone i {
    margin-right: 10px;
}

/* Service Detail */
.service-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: auto;
}

.service-steps {
    margin: 30px 0;
}

.step {
    display: flex;
    margin-bottom: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 5px;
}

.service-price {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

/* Clients Grid */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
}

.client-logo {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Reviews */
.review-item {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 15px;
}

.review-content {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.review-content:before {
    content: '"';
    font-size: 60px;
    color: rgba(0, 86, 179, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--secondary-color);
    margin: 0;
}

/* Department Cards */
.department-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.department-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.department-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.department-card h3 {
    margin-bottom: 15px;
}

.department-card p {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.department-phone,
.department-email {
    display: block;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.department-phone i,
.department-email i {
    margin-right: 8px;
    color: var(--primary-color);
}

/* Contact Features */
.contact-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .services-sidebar {
        position: static;
        margin-bottom: 50px;
    }

    .page-banner {
        padding: 80px 0;
    }
}

@media (max-width: 767.98px) {
    .page-banner {
        padding: 60px 0;
    }

    .page-banner h1 {
        font-size: 36px;
    }

    .clients-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .client-logo {
        height: 100px;
        padding: 15px;
    }
}

@media (max-width: 575.98px) {
    .page-banner {
        padding: 50px 0;
        margin-top: 60px;
    }

    .page-banner h1 {
        font-size: 28px;
    }

    .price-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .price {
        margin-bottom: 15px;
    }
}