html, body {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333333;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    color: #FFFFFF;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 0.2rem;
}

.hero-content h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-content .btn {
    background: #F28C38;
    color: #FFFFFF;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.hero-content .btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFFFFF;
    transition: width 0.3s;
}

.hero-content .btn:hover::after {
    width: 100%;
}

.hero-content .btn:hover {
    background: #D9752A;
    box-shadow: 0 0 10px rgba(242, 140, 56, 0.5);
}

/* Sticky Navbar */
.et-hero-tabs {
    position: relative;
    background: #F5F6F5;
}

.et-hero-tabs-container {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: #1A2526;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.logo {
    margin-left: 20px;
}

.logo a {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.1rem;
}

.nav-links {
    display: flex;
    flex: 1;
    justify-content: center;
}

.et-hero-tab {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    letter-spacing: 0.1rem;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.et-hero-tab::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F28C38;
    transition: width 0.3s;
}

.et-hero-tab:hover::after {
    width: 100%;
}

.et-hero-tab:hover {
    color: #F28C38;
    background: none;
}

.et-hero-tab-slider {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 6px;
    background: #F28C38;
    transition: left 0.3s ease;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-right: 20px;
}

.social-icon {
    color: #FFFFFF;
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    color: #F28C38;
}

.burger {
    display: none;
    cursor: pointer;
    margin-left: 20px;
}

.burger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    margin: 5px 0;
    transition: all 0.3s;
}

.burger.toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.toggle span:nth-child(2) {
    opacity: 0;
}

.burger.toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Home Section */
.home-section {
    min-height: 100vh;
    background: #F5F6F5;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-container {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
    align-items: center;
}

.home-text {
    flex: 1;
    padding: 20px;
}

.home-text h1 {
    font-size: 2.5rem;
    color: #1A2526;
    margin-bottom: 20px;
    letter-spacing: 0.1rem;
}

.home-text h3 {
    font-size: 1.5rem;
    color: #333333;
    margin-bottom: 20px;
    opacity: 0.8;
}

.home-text p {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.home-text .btn {
    background: #F28C38;
    color: #FFFFFF;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.home-text .btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFFFFF;
    transition: width 0.3s;
}

.home-text .btn:hover::after {
    width: 100%;
}

.home-text .btn:hover {
    background: #D9752A;
    box-shadow: 0 0 10px rgba(242, 140, 56, 0.5);
}

.home-image {
    flex: 1;
    max-width: 500px;
}

.home-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
    min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1506012787146-f92b2d7d6d96?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.services-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.services-container h1 {
    font-size: 2.5rem;
    color: #1A2526;
    margin-bottom: 20px;
    letter-spacing: 0.1rem;
}

.services-container h3 {
    font-size: 1.5rem;
    color: #333333;
    margin-bottom: 40px;
    opacity: 0.8;
}

.services-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-panel {
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, border 0.3s;
    position: relative;
    overflow: hidden;
    min-height: 60px;
    display: block;
    clear: both;
}

.service-panel:hover {
    transform: scale(1.02);
    border: 2px solid #F28C38;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    cursor: pointer;
}

.panel-icon {
    font-size: 1.5rem;
    color: #F28C38;
}

.panel-header h2 {
    font-size: 1.5rem;
    color: #1A2526;
    flex: 1;
}

.panel-header .panel-toggle {
    font-size: 1.2rem;
    color: #F28C38;
    transition: transform 0.3s;
}

.panel-header.active .panel-toggle {
    transform: rotate(180deg);
}

.panel-content {
    padding: 0 20px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.5s ease;
}

.panel-content.active {
    padding: 20px;
    max-height: 800px;
    opacity: 1;
}

.panel-content p {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 15px;
}

.panel-content ul {
    list-style: none;
    font-size: 0.9rem;
    color: #333333;
    line-height: 1.6;
}

.panel-content ul li {
    margin-bottom: 10px;
}

/* About Section */
.about-section {
    min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('img/2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    position: relative;
}

.about-section::before,
.about-section::after {
    content: none;
}

.about-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.about-container h1 {
    font-size: 2.5rem;
    color: #1A2526;
    margin-bottom: 40px;
    letter-spacing: 0.1rem;
}

.mission-block {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.mission-content {
    flex: 2;
    text-align: left;
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background: #F28C38;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.mission-content h2 {
    font-size: 1.8rem;
    color: #1A2526;
    margin-bottom: 20px;
}

.mission-content p {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.6;
}

.mission-content .highlight {
    color: #F28C38;
    position: relative;
    cursor: pointer;
}

.mission-content .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F28C38;
    transition: width 0.3s;
}

.mission-content .highlight:hover::after {
    width: 100%;
}

.mission-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    color: #F28C38;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1rem;
    color: #333333;
}

.story-block {
    display: flex;
    gap: 40px;
    align-items: center;
    background: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.story-content {
    flex: 1;
    text-align: left;
}

.story-content h2 {
    font-size: 1.8rem;
    color: #1A2526;
    margin-bottom: 20px;
}

.story-content p {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.6;
}

.story-content .highlight {
    color: #F28C38;
    position: relative;
    cursor: pointer;
}

.story-content .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F28C38;
    transition: width 0.3s;
}

.story-content .highlight:hover::after {
    width: 100%;
}

.story-content .btn {
    background: #F28C38;
    color: #FFFFFF;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.story-content .btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFFFFF;
    transition: width 0.3s;
}

.story-content .btn:hover::after {
    width: 100%;
}

.story-content .btn:hover {
    background: #D9752A;
    box-shadow: 0 0 10px rgba(242, 140, 56, 0.5);
}

.story-image {
    flex: 1;
    max-width: 500px;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Who We Serve Section */
.who-we-serve-section {
    min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('img/3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    position: relative;
}

.who-we-serve-section::before,
.who-we-serve-section::after {
    content: none;
}

.who-we-serve-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.who-we-serve-container h1 {
    font-size: 2.5rem;
    color: #1A2526;
    margin-bottom: 40px;
    letter-spacing: 0.1rem;
}

.clients-block h2 {
    font-size: 1.8rem;
    color: #1A2526;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.clients-block h2 i {
    color: #F28C38;
    font-size: 1.5rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.client-card {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.client-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.client-card i {
    font-size: 2rem;
    color: #F28C38;
    margin-bottom: 10px;
}

.client-card h3 {
    font-size: 1.2rem;
    color: #1A2526;
}

.clients-block p {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
}

.clients-block .highlight {
    color: #F28C38;
    position: relative;
    cursor: pointer;
}

.clients-block .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F28C38;
    transition: width 0.3s;
}

.clients-block .highlight:hover::after {
    width: 100%;
}

.trust-block h2 {
    font-size: 1.8rem;
    color: #1A2526;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.trust-block h2 i {
    color: #F28C38;
    font-size: 1.5rem;
}

.trust-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-item i {
    font-size: 1.5rem;
    color: #F28C38;
}

.trust-item p {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
    text-align: left;
}

.trust-item .highlight {
    color: #F28C38;
    position: relative;
    cursor: pointer;
}

.trust-item .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F28C38;
    transition: width 0.3s;
}

.trust-item .highlight:hover::after {
    width: 100%;
}

/* Contact Section */
.contact-section {
    min-height: 100vh;
    background: url('img/3.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    position: relative;
}

.contact-section::before,
.contact-section::after {
    content: none;
}

.contact-container {
    max-width: 1200px;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-content {
    flex: 1;
    text-align: left;
}

.contact-content h1 {
    font-size: 2.5rem;
    color: #1A2526;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-content h1 i {
    color: #F28C38;
    font-size: 1.5rem;
}

.contact-content p {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-content .highlight {
    color: #F28C38;
    position: relative;
    cursor: pointer;
}

.contact-content .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F28C38;
    transition: width 0.3s;
}

.contact-content .highlight:hover::after {
    width: 100%;
}

.contact-content .address {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 20px;
}

.contact-socials {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-socials .social-icon {
    width: 40px;
    height: 40px;
    background: #F28C38;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: transform 0.3s, background 0.3s;
}

.contact-socials .social-icon:hover {
    transform: scale(1.1);
    background: #D9752A;
}

/* Footer */
.footer {
    background: linear-gradient(rgba(26, 37, 38, 0.9), rgba(26, 37, 38, 0.9)), url('img/5.jpg');
    background-size: cover;
    background-position: center;
    padding: 40px 20px;
    color: #FFFFFF;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.footer-logo a {
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.1rem;
}

.footer-logo p {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 10px;
}

.footer-links h3 {
    font-size: 1.2rem;
    color: #F28C38;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #F28C38;
}

.footer-contact h3 {
    font-size: 1.2rem;
    color: #F28C38;
    margin-bottom: 15px;
}

.footer-contact p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.footer-contact a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #F28C38;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-socials .social-icon {
    font-size: 1.2rem;
}

/* Main Content */
.et-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #F5F6F5;
    text-align: center;
    padding: 0 2em;
}

.et-slide h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 0.2rem;
}

.et-slide h3 {
    font-size: 1.2rem;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .home-container, .mission-block, .story-block, .contact-container {
        gap: 30px;
    }

    .home-text h1, .services-container h1, .about-container h1, .who-we-serve-container h1, .contact-content h1 {
        font-size: 2.2rem;
    }

    .home-text h3, .services-container h3, .contact-content h3 {
        font-size: 1.3rem;
    }

    .home-image, .story-image {
        max-width: 400px;
    }

    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 800px) {
    .hero-content {
        padding: 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h3 {
        font-size: 1.2rem;
    }

    .hero-content .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .et-hero-tabs-container {
        flex-wrap: wrap;
        height: auto;
        padding: 10px 0;
    }

    .logo {
        margin-left: 10px;
    }

    .logo a {
        font-size: 1.2rem;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background: #1A2526;
        position: absolute;
        top: 70px;
        left: 0;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .et-hero-tab {
        font-size: 0.9rem;
        padding: 12px 0;
    }

    .et-hero-tab::after {
        bottom: 0;
    }

    .burger {
        display: block;
    }

    .social-icons {
        margin: 0 10px;
    }

    .social-icon {
        font-size: 1rem;
    }

    .home-container {
        flex-direction: column;
        gap: 20px;
    }

    .home-text {
        text-align: center;
    }

    .home-text h1 {
        font-size: 1.8rem;
    }

    .home-text h3 {
        font-size: 1.2rem;
    }

    .home-text p {
        font-size: 0.9rem;
    }

    .home-text .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .home-image {
        max-width: 100%;
    }

    .services-container h1 {
        font-size: 1.8rem;
    }

    .services-container h3 {
        font-size: 1.2rem;
    }

    .panel-header {
        padding: 15px;
    }

    .panel-icon {
        font-size: 1.2rem;
    }

    .panel-header h2 {
        font-size: 1.3rem;
    }

    .panel-header .panel-toggle {
        font-size: 1rem;
    }

    .panel-content {
        max-height: 1000px;
    }

    .panel-content p, .panel-content ul li {
        font-size: 0.9rem;
    }

    .about-container h1 {
        font-size: 1.8rem;
    }

    .mission-block {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .mission-content {
        text-align: center;
    }

    .mission-content h2 {
        font-size: 1.5rem;
    }

    .mission-content p {
        font-size: 0.9rem;
    }

    .icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .mission-stats {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .stat-item p {
        font-size: 0.9rem;
    }

    .story-block {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .story-content {
        text-align: center;
    }

    .story-content h2 {
        font-size: 1.5rem;
    }

    .story-content p {
        font-size: 0.9rem;
    }

    .story-content .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .story-image {
        max-width: 100%;
    }

    .who-we-serve-container h1 {
        font-size: 1.8rem;
    }

    .clients-block h2, .trust-block h2 {
        font-size: 1.5rem;
    }

    .clients-block h2 i, .trust-block h2 i {
        font-size: 1.2rem;
    }

    .clients-grid {
        grid-template-columns: 1fr;
    }

    .client-card {
        padding: 15px;
    }

    .client-card i {
        font-size: 1.5rem;
    }

    .client-card h3 {
        font-size: 1.1rem;
    }

    .clients-block p {
        font-size: 0.9rem;
    }

    .trust-item i {
        font-size: 1.2rem;
    }

    .trust-item p {
        font-size: 0.9rem;
        text-align: center;
    }

    .contact-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .contact-content {
        text-align: center;
    }

    .contact-content h1 {
        font-size: 1.8rem;
    }

    .contact-content h1 i {
        font-size: 1.2rem;
    }

    .contact-content p, .contact-content .address {
        font-size: 0.9rem;
    }

    .contact-socials .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 500px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content h3 {
        font-size: 1rem;
    }

    .hero-content .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .et-hero-tabs-container {
        height: 60px;
    }

    .logo a {
        font-size: 1rem;
    }

    .burger {
        margin-left: 10px;
    }

    .burger span {
        width: 20px;
        height: 2px;
        margin: 4px 0;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icon {
        font-size: 0.9rem;
    }

    .home-text h1 {
        font-size: 1.6rem;
    }

    .home-text h3 {
        font-size: 1rem;
    }

    .home-text p {
        font-size: 0.8rem;
    }

    .home-text .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .services-container h1 {
        font-size: 1.6rem;
    }

    .services-container h3 {
        font-size: 1rem;
    }

    .panel-header {
        padding: 12px;
    }

    .panel-icon {
        font-size: 1rem;
    }

    .panel-header h2 {
        font-size: 1.1rem;
    }

    .panel-header .panel-toggle {
        font-size: 0.9rem;
    }

    .panel-content p, .panel-content ul li {
        font-size: 0.8rem;
    }

    .about-container h1 {
        font-size: 1.6rem;
    }

    .mission-content h2, .story-content h2 {
        font-size: 1.3rem;
    }

    .mission-content p, .story-content p {
        font-size: 0.8rem;
    }

    .icon-wrapper {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .stat-item h3 {
        font-size: 1.3rem;
    }

    .stat-item p {
        font-size: 0.8rem;
    }

    .story-content .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .who-we-serve-container h1 {
        font-size: 1.6rem;
    }

    .clients-block h2, .trust-block h2 {
        font-size: 1.3rem;
    }

    .clients-block h2 i, .trust-block h2 i {
        font-size: 1rem;
    }

    .client-card i {
        font-size: 1.3rem;
    }

    .client-card h3 {
        font-size: 1rem;
    }

    .clients-block p {
        font-size: 0.8rem;
    }

    .trust-item i {
        font-size: 1rem;
    }

    .trust-item p {
        font-size: 0.8rem;
    }

    .contact-content h1 {
        font-size: 1.6rem;
    }

    .contact-content h1 i {
        font-size: 1rem;
    }

    .contact-content p, .contact-content .address {
        font-size: 0.8rem;
    }

    .contact-socials .social-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}