/* General Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0 auto;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 15px;
}

/* Header */
header {
    background-color: #ffffff;
    color: #333;
    padding: 20px 0;
    position: relative;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.logo{
    float: none;
    display: flex;
    align-items: center;
}
.logo h1{
    font-size: 24px;
    color: #192855;
}
.logo img{
    height: 40px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #192855;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #192855;
    font-size: 18px;
    font-weight: 500;
}
nav ul li a:hover, nav ul li a.active {
    color: #aa1f21;
}

/* Hero Section */
.hero {
    background:  #192855 url('hero-image.jpg') center/cover no-repeat;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.hero h2, .sitemaphero h1{
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
}

.cta-button {
    background-color: #aa1f21;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
}
.services-hero {
    background-color: #192855; /* Brand Blue */
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.services-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #aa1f21;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1rem;
}

.cta-button:hover {
    background-color: #c63d35;
}
.cta-button:hover {
    background-color: #8a1a1c;
}

/* Services Section */
.services {
    background-color: #f2f2f2;
    padding: 60px 0;
}


.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 300px;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.card h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #192855;
}

.card p,
.card ul {
    font-size: 16px;
    color: #555;
}

.card ul {
    list-style-type: disc;
    margin-left: 20px;
}
/* What We Do Best Section */
.what-we-do-best {
    padding: 60px 0;
    background-color: #1928550f;
    text-align: center;
}


.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    max-width: 300px;
    margin: 10px;
    text-align: center;
    flex: 1;
}

.card-icon {
    background-color:#aa1f21;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.card i {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 10px;
}
.card-icon i {
    font-size: 28px;
}

.card h4 {
    font-size: 22px;
    color: #192855;
    margin-bottom: 15px;
}

.card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.read-more {
    font-size: 16px;
    color: #aa1f21;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.read-more:hover {
    text-decoration: underline;
}
#sitemap ul {
    list-style-type: none;
    padding: 0;
    padding-left: 20px;
}

#sitemap ul li {
    margin: 10px 0;
    margin-bottom: 5px;
}

#sitemap ul li a {
    color: #192855; /* Link color */
    text-decoration: none;
    font-size: 18px;
}

#sitemap ul li a:hover {
    text-decoration: underline;
    color: #aa1f21;;
}
* Contact Page Hero Section Styles */
.contact-hero {
    background-color: #192855; /* Brand blue background color */
    color: #ffffff; /* Text color for contrast */
    padding: 60px 0; /* Padding for top and bottom */
    text-align: center; /* Center-align text */
}

.contact-hero h1 {
    font-size: 48px; /* Large heading for impact */
    margin-bottom: 20px; /* Spacing below heading */
}

.contact-hero p {
    font-size: 20px; /* Readable font size */
    margin-bottom: 30px; /* Spacing below paragraph */
    line-height: 1.6; /* Line height for readability */
}
#sitemap  {
    margin-bottom: 40px;
}

.expertise-in-technologies {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.expertise-in-technologies .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}


.swiper-container {
    width: 100%;
    height: auto;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.5em;
    color: #192855; /* Brand blue */
    text-align: center;
    padding: 20px;
}

.swiper-slide i {
    margin-bottom: 10px;
}

.swiper-slide span {
    font-size: 1em;
    font-weight: bold;
    color: #333;
}

/* Pagination and Navigation */
.swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: #192855; /* Brand blue */
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 80%;
        margin-bottom: 20px;
    }
}
/* Contact Page */
.contact-us {
    padding: 60px 0;
    background-color: #1928550f;
    overflow-x: hidden;
    width: 100%;
}

.contact-us h2 {
    font-size: 32px;
    color: #192855;
    text-align: center;
    margin-bottom: 20px;
}

.contact-subtext {
    font-size: 18px;
    color: #777;
    text-align: center;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
    margin-bottom: 40px;
}

.info-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 25px 20px;
    width: 100%;
    max-width: 300px;
    margin: 10px;
    box-sizing: border-box;
}

.info-item i {
    font-size: 32px;
    color: #192855;
    margin-bottom: 10px;
}


.info-item a {
    color: #aa1f21;
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 30px;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
    position: relative;
    z-index: 1;
}

.contact-form form {
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.contact-form h3 {
    font-size: 24px;
    color: #192855;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form label {
    display: block;
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 16px;
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color 0.3s ease;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #192855;
    box-shadow: 0 0 0 2px rgba(25, 40, 85, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    background-color: #aa1f21;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #8a1a1c;
}

#form-response {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.consent-checkbox {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.consent-checkbox input[type="checkbox"] {
    width: auto;
    min-width: 18px;
    height: 18px;
    margin: 0;
    margin-top: 3px;
    cursor: pointer;
    flex-shrink: 0;
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
    pointer-events: auto;
    z-index: 2;
    position: relative;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

.consent-checkbox label {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    cursor: pointer;
    font-weight: normal;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
    touch-action: manipulation;
}

.consent-checkbox label a {
    color: #aa1f21;
    text-decoration: underline;
}

.consent-checkbox label a:hover {
    color: #8a1a1c;
}
/* Expertise in Technologies Section */
.expertise-in-technologies {
    padding: 60px 0;
    background-color: #1928550f;
    text-align: center;
}


.tech-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.tech-icon {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100px;
    margin: 10px;
    text-align: center;
}

.tech-icon i {
    font-size: 32px;
    color:  #aa1f21;
}
.tech-icon img {width: 50px;}

.tech-icon span {
    display: block;
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}


/* Our Process Section */
.process {
    padding: 60px 0;
    background-color: #f7f7f7;
}


.timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #192855;
}

.timeline-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 800px;
    margin-bottom: 40px;
    position: relative;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    order: -1;
}

.timeline-item:nth-child(even) {
    text-align: right;
    flex-direction: row-reverse;
}

.timeline-icon {
    background-color: #aa1f21;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    margin-left: 20px;
    position: relative;
    z-index: 1;
}

.timeline-icon i {
    font-size: 24px;
}

.timeline-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: calc(50% - 80px);
    position: relative;
    z-index: 1;
}

.timeline-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #192855;
}

.timeline-content p {
    font-size: 16px;
    color: #555;
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .timeline-item:nth-child(even) .timeline-content {
        order: 0;
    }

    .timeline-item:nth-child(even) {
        flex-direction: column;
    }

    .timeline-icon {
        margin: 0 0 20px 0;
    }

    .timeline-content {
        width: 80%;
    }
    .timeline-item:nth-child(even) {
        text-align: center;
        flex-direction: inherit;
    }
}

/* Call-to-Action Section */
.cta {
    background-color: #aa1f21;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}


.cta p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #192855;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: #0f1c42;
}
/* About Page */



/* About Page Sections */
.about-intro {
    padding: 60px 0;
    background: #1928550f;
    text-align: center;
}

.about-intro h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
}

/* Our Story */
.our-story {
    padding: 60px 0;
}
.story-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.story-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.story-text p {
    font-size: 1.1em;
}

/* Why Choose Us */
.why-choose-us {
    padding: 60px 0;
    background: #e9ecef;
}

.reasons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.reason {
    flex: 1 1 22%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.reason i {
    font-size: 2em;
    margin-bottom: 10px;
    color: #aa1f21;
}

.reason h4 {
    margin-bottom: 10px;
    font-size: 1.2em;
}

.reason p {
    font-size: 1em;
}

/* Core Values */
.core-values {
    padding: 60px 0;
}

.values {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.value {
    flex: 1 1 22%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.value i {
    font-size: 2em;
    margin-bottom: 10px;
    color: #aa1f21;
}

.value h4 {
    margin-bottom: 10px;
    font-size: 1.2em;
}

.value p {
    font-size: 1em;
}

/* Our Mission */
.our-mission {
    padding: 60px 0;
    background: #1928550f;
    text-align: center;
}


/* Services Page */
.services {
    padding: 60px 0;
    background: #1928550f;
}

.services h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: #192855;
}

.services-intro {
    font-size: 1.2em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #333;
}

.service-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-box {
    flex: 1 1 22%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-box i {
    font-size: 2.5em;
    color: #aa1f21;
    margin-bottom: 15px;
}


.service-box ul {
   
    padding: 0;
    margin: 20px 0 0;
    color: #333333;
}

.service-box ul li {
    margin: 5px 0;
}
.technologies {
    padding: 40px 0;
    background: #fff;
    text-align: center;
}


.tech-icons {
    font-size: 2em;
}

.tech-icons i {
    margin: 0 15px;
    color: #aa1f21;
}

.our-process {
    padding: 40px 0;
    background: #1928550f;
    text-align: center;
}


.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.step {
    flex: 1 1 22%;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.step i {
    font-size: 2.5em;
    color:#aa1f21;
    margin-bottom: 15px;
}

.step h4 {
    font-size: 1.5em;
    color: #192855;
}

.step p {
    font-size: 1em;
    color: #555;
}
/* General Styles for Lists */
ul {
    list-style-type: none; /* Remove default bullets */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
}

li {
    margin-bottom: 10px; /* Space between items */
    font-size: 16px; /* Font size for list items */
    line-height: 1.5; /* Line height for readability */
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center items vertically */
    text-align: left;
}

.hero .cta-button {
    background-color: #c95654;
}

/* Specific Styles for Service Lists */
.service-box ul {
    padding-left: 10px; /* Indent the list */
}
.service-box li::before {
    content: "\2022"; /* Bullet character */
    font-size: 25px; /* Size of the bullet */
    color: #192855; /* Color of the bullet */
    display: inline-block; /* Make bullet inline */
    width: 0.5em; /* Space for bullet */
    margin-right: 5px; /* Space between bullet and text */
    vertical-align: text-top;
}
.service-box li {
    margin-bottom: 15px; /* Increase space between items */
}

.service-box li::before {
    color: #aa1f21; /* Different bullet color for services */
}

/* Footer */
footer {
    background-color: #192855;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.footer-menu ul li {
    margin: 5px 0;
}

.footer-menu ul li a {
    color: #fff;
    font-size: 16px;
}

.footer-contact {
    margin: 10px 0;
}

.footer-contact p {
    margin: 5px 0;
    font-size: 14px;
}

.footer-contact a {
    color: #fff;
    text-decoration: underline;
}

.footer-social a {
    color: #fff;
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #aa1f21;
}

footer p {
    margin-top: 10px;
    font-size: 14px;
}
.hero h1{
    font-size: 2.5em;
    margin-bottom: 20px;

}
.hero p{ font-size: 1.2em;}

.pgheading h3 {
    font-size: 1.8em;
    color: #192855;
    margin-bottom: 20px;
}
.cta h3{ color:#fff;}

.pgsection-subtext, .pgheading p{
    font-size: 1.1em;
    color: #333;
    margin-bottom: 30px;
}
.cta p{ color:#fff;}

.clr-both{ clear: both !important;}
/* Responsive Design */
@media (max-width: 768px) {
    .tech-icons {
        flex-direction: column;
        align-items: center;
    }

    .tech-icon {
        width: 80%;
        margin-bottom: 20px;
    }
    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 80%;
        margin-bottom: 20px;
    }
    .contact-us {
        padding: 40px 0;
        overflow-x: hidden;
        width: 100%;
    }

    .contact-us h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .contact-subtext {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .contact-info {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .info-item {
        width: 100%;
        max-width: 100%;
        margin: 10px 0;
        padding: 15px;
    }

    .contact-form {
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
        padding: 20px 15px;
        margin: 0 auto;
    }
    
    .container {
        padding: 0 10px;
    }

    .contact-form h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .contact-form label {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .contact-form input, 
    .contact-form textarea {
        padding: 10px;
        font-size: 16px;
        margin-bottom: 15px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
    }

    .contact-form textarea {
        min-height: 100px;
    }

    .contact-form button {
        padding: 12px 20px;
        font-size: 16px;
        width: 100%;
    }

    .consent-checkbox {
        margin-bottom: 15px;
        gap: 10px;
        pointer-events: auto;
        z-index: 1;
    }

    .consent-checkbox input[type="checkbox"] {
        min-width: 20px;
        height: 20px;
        margin-top: 2px;
        cursor: pointer;
        pointer-events: auto;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }

    .consent-checkbox label {
        font-size: 13px;
        pointer-events: auto;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Mobile Navigation Styles */
    header .container {
        flex-wrap: wrap;
    }
    
    .logo {
        float: none;
    }
    
    .hamburger {
        display: flex;
        order: 2;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        z-index: 1000;
        order: 3;
        flex-basis: 100%;
    }

    nav.active {
        max-height: 300px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        width: 100%;
        margin: 0;
    }

    nav ul li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
        margin-left: 0;
    }

    nav ul li a {
        display: block;
        padding: 10px 0;
        width: 100%;
    }

    .service-cards,
    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .card,
    .step {
        width: 80%;
        margin-bottom: 20px;
    }
    li {
        font-size: 14px; /* Smaller font size on small screens */
    }

    li::before {
        font-size: 18px; /* Smaller bullet size on small screens */
        margin-right: 8px; /* Adjust spacing on small screens */
    }
}

@media (max-width: 580px) {
    body {
        font-size: 13px !important;
    }
    .hero h1, .sitemaphero h1 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .hero p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .pagesec .subtext{ font-size: 14px;}
    .pagesecHeading h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .contact-us {
        padding: 30px 0;
        overflow-x: hidden;
        width: 100%;
    }

    .contact-us h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .contact-subtext {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .contact-form {
        padding: 20px 15px;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .contact-form form {
        width: 100%;
        box-sizing: border-box;
    }

    .contact-form h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .contact-form label {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .contact-form input, 
    .contact-form textarea {
        padding: 10px;
        font-size: 16px;
        margin-bottom: 12px;
        box-sizing: border-box;
        width: 100%;
    }

    .contact-form button {
        padding: 12px;
        font-size: 16px;
        box-sizing: border-box;
    }

    .consent-checkbox {
        margin-bottom: 12px;
        gap: 10px;
        pointer-events: auto;
        z-index: 1;
    }

    .consent-checkbox input[type="checkbox"] {
        min-width: 22px;
        height: 22px;
        margin-top: 2px;
        cursor: pointer;
        pointer-events: auto;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }

    .consent-checkbox label {
        font-size: 12px;
        pointer-events: auto;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .info-item {
        padding: 18px 15px;
        box-sizing: border-box;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .contact-us .container {
        padding: 0 12px;
    }

    .info-item i {
        font-size: 24px;
    }
}