/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.site-main-wrapper {
    padding-top: 70px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #FF6600;
    font-weight: 700;
}

/* Header Styles */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    text-decoration: none;
}

.logo img {
    max-height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6600;
}

/* Navigation */
.main-navigation .primary-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #FF6600;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6600;
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Header CTA */
.header-cta .cta-button {
    background-color: transparent;
    border: 1px solid #ff6913;
    border-radius: 1000px;
    color: #ff6913;
    font-weight: 700;
    font-size: 14px;
    padding: 17px 20px 14px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.header-cta .cta-button:hover {
    color: white;
    background-color: #ff6913;
}

.header-cta .cta-button:active {
    transform: scale(0.98);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Page Header */
.page-header {
    color: white;
    padding: 80px 0 80px;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../images/map.webp');
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #000;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Homepage Hero */
.hero-homepage {
    color: white;
    padding: 140px 0 80px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-homepage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.8);
}

.hero-homepage > .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #ff6913;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Main Section (Based on martianexpress.us) */
.hero-main-section {
    position: relative;
    padding: 116px 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    min-height: 600px;
}

.hero-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.hero-main-text {
    flex: 1;
    max-width: 600px;
}

.hero-main-title {
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #161616;
}

.hero-main-title .hero-highlight {
    color: #ff6913;
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
}

.hero-main-subtitle {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 30px;
    color: #161616;
}

.hero-main-description {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
    line-height: 1.4;
}

.hero-main-stats {
    display: flex;
    gap: 60px;
}

.hero-main-stat {
    display: flex;
    flex-direction: column;
}

.hero-main-stat .stat-number {
    color: #ff6913;
    font-size: 36px;
    line-height: 36px;
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
    font-weight: 700;
    margin-bottom: 0px;
    padding: 0px;
}

.hero-main-stat .stat-label {
    font-size: 18px;
    color: #161616;
}

.hero-main-image {
    flex: 1;
    max-width: 50%;
    position: relative;
}

.hero-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Hero Main */
@media (max-width: 768px) {
    .hero-main-section {
        padding: 96px 20px;
        flex-direction: column-reverse;
        min-height: auto;
    }
    
    .hero-main-content {
        flex-direction: column-reverse;
        gap: 2rem;
    }
    
    .hero-main-text {
        max-width: 100%;
    }
    
    .hero-main-title {
        font-size: 28px;
    }
    
    .hero-main-subtitle {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .hero-main-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .hero-main-stats {
        gap: 2rem;
    }
    
    .hero-main-stat .stat-number {
        font-size: 24px;
    }
    
    .hero-main-stat .stat-label {
        font-size: 14px;
    }
    
    .hero-main-image {
        max-width: 100%;
    }
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 17px 20px 14px;
    text-decoration: none;
    border-radius: 1000px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: transparent;
    color: #ff6913;
    border-color: #ff6913;
}

.btn-primary:hover {
    background: #ff6913;
    color: white;
    border-color: #ff6913;
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #ff6913;
    border-color: white;
}

.btn-secondary:active {
    transform: scale(0.98);
}

.btn-outline {
    background: transparent;
    color: #ff6913;
    border-color: #ff6913;
}

.btn-outline:hover {
    background: #ff6913;
    color: white;
    border-color: #ff6913;
}

.btn-large {
    padding: 20px 30px 17px;
    font-size: 16px;
}

.btn-small {
    padding: 14px 16px 12px;
    font-size: 12px;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Solid button variant */
.btn-solid {
    background: #ff6913;
    color: white;
    border-color: #ff6913;
}

.btn-solid:hover {
    background: #e55a00;
    color: white;
    border-color: #e55a00;
}

/* Services Grid */
.services-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-icon {
    margin-bottom: 1.5rem;
}

.card-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #FF6600;
    font-weight: 600;
}

.card-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-link {
    color: #FF6600;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #E55A00;
}

.card-link .arrow {
    transition: transform 0.3s ease;
}

.card-link:hover .arrow {
    transform: translateX(5px);
}

/* Stats Section */
.stats-section {
    background: #1A1A2E;
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Features */
.service-features {
    padding: 80px 0;
}

.service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF6600;
    margin-bottom: 1rem;
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

/* Service Benefits */
.service-benefits {
    background: #f8f9fa;
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.benefit-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #FF6600;
    font-weight: 600;
}

.benefit-description {
    color: #666;
    line-height: 1.6;
}

/* Service CTA */
.service-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    color: white;
    text-align: center;
}

.service-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.service-cta .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.homepage-cta {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.homepage-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FF6600;
}

.homepage-cta .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Page */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-intro {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #666;
}

.office-locations h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #FF6600;
}

.location-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.location-item:last-child {
    border-bottom: none;
}

.location-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.location-details p {
    margin-bottom: 0.5rem;
}

.location-details a {
    color: #FF6600;
    text-decoration: none;
}

.location-details a:hover {
    text-decoration: underline;
}

.location-map {
    margin-top: 1rem;
}

/* Forms */
.contact-form,
.quote-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6600;
}

.form-group textarea {
    resize: vertical;
}

/* Form Buttons */
.contact-form button[type="submit"],
.quote-form button[type="submit"] {
    width: 100%;
    padding: 17px 20px 14px;
    background: transparent;
    color: #ff6913;
    border: 1px solid #ff6913;
    border-radius: 1000px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button[type="submit"]:hover,
.quote-form button[type="submit"]:hover {
    background: #ff6913;
    color: white;
}

.contact-form button[type="submit"]:active,
.quote-form button[type="submit"]:active {
    transform: scale(0.98);
}

/* Button Sizes Responsive */
@media (max-width: 768px) {
    .btn {
        padding: 16px 18px 14px;
        font-size: 13px;
    }
    
    .btn-large {
        padding: 18px 28px 16px;
        font-size: 15px;
    }
    
    .btn-small {
        padding: 13px 14px 12px;
        font-size: 11px;
    }
}

/* Footer */
.site-footer {
    background: #f5f5f5;
    color: #333;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #161616;
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    font-weight: 400;
}

.footer-section a:hover {
    color: #161616;
}

/* Footer Menu Styles */
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
}

.footer-menu a:hover {
    color: #161616;
}

/* Company Section */
.company-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.company-logo img {
    max-height: 40px;
    width: auto;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #161616;
}

.company-tagline {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Contact Items with Icons */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff3e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.contact-icon i {
    color: #ff6913;
    font-size: 18px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 13px;
    color: #999;
    margin-bottom: 4px;
    font-weight: 400;
}

.contact-value {
    font-size: 14px;
    color: #161616;
    font-weight: 500;
    text-decoration: none;
}

.contact-value:hover {
    color: #ff6913;
}

.footer-pages ul li:last-child,
.footer-contacts .contact-item:last-child {
    margin-bottom: 0;
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    color: #999;
    font-size: 13px;
}

.footer-created,
.footer-copyright {
    margin: 0;
    color: #999;
}

.footer-created span {
    color: #161616;
    font-weight: 600;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    display: none;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    display: flex;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-logo img {
    height: 30px;
    width: auto;
}

.mobile-menu-logo .logo-text {
    font-size: 16px;
    font-weight: 700;
    color: #161616;
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
    letter-spacing: 0.5px;
}

.mobile-menu-divider {
    height: 1px;
    background: #ff6913;
    margin: 0 20px;
}

.mobile-menu-nav {
    padding: 30px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-primary-menu li {
    margin-bottom: 8px;
}

.mobile-primary-menu a {
    color: #161616;
    text-decoration: none;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
    display: block;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.mobile-primary-menu a:hover {
    color: #ff6913;
}

.mobile-cta-button {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid #ff6913;
    border-radius: 1000px;
    color: #ff6913;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.mobile-cta-button:hover {
    background: #ff6913;
    color: #fff;
}

.mobile-menu-contacts {
    padding: 30px 20px;
    border-top: 1px solid #f5f5f5;
}

.mobile-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.mobile-contact-icon {
    flex-shrink: 0;
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-contact-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
}

.mobile-contact-value {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #161616;
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
    text-decoration: none;
}

.mobile-contact-value:hover {
    color: #ff6913;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-section h3 {
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-bottom p {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .feature-number {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* About Section (Why Us) - Based on martianexpress.us */
.about_about__cESqQ {
    padding: 0 0 123px;
}

@media (min-width: 650px) and (max-width: 1199px) {
    .about_about__cESqQ {
        padding: 0 20px;
    }
}

@media (max-width: 649px) {
    .about_about__cESqQ {
        padding: 0 0px;
    }
}

.about_backgroud__6kr_W {
    background: url('./truck.webp') no-repeat;
    height: 550px;
    width: 100vw;
    background-size: cover;
}

@media (min-width: 650px) and (max-width: 1199px) {
    .about_backgroud__6kr_W {
        height: 400px;
    }
}

@media (max-width: 649px) {
    .about_backgroud__6kr_W {
        background: url('./truck-mobile.webp') no-repeat;
        background-size: cover;
        height: 215px;
    }
}

.about_card__JvHzS {
    background-color: #fff;
    margin-top: -150px;
    max-width: 1048px;
    box-shadow: 0 4px 120px rgba(0, 0, 0, 0.1);
    padding: 44px;
    display: grid;
    grid-template-columns: 50% 50%;
    border-radius: 12px;
}

@media (max-width: 649px) {
    .about_card__JvHzS {
        padding: 20px;
        grid-template-columns: auto;
        margin-top: -20px;
    }
}

@media (min-width: 650px) and (max-width: 1199px) {
    .about_card__JvHzS {
        padding: 20px;
        margin-top: -60px;
    }
}

@media (max-width: 649px) {
    .about_card__JvHzS .about_cardInfo__z26lV {
        margin-bottom: 44px;
    }
}

.about_card__JvHzS .about_title__BJ151 {
    margin-top: 12px;
    margin-bottom: 8px;
    font-size: 35px;
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #161616;
}

@media (max-width: 649px) {
    .about_card__JvHzS .about_title__BJ151 {
        font-size: 18px;
    }
}

@media (min-width: 650px) and (max-width: 1199px) {
    .about_card__JvHzS .about_title__BJ151 {
        font-size: 18px;
    }
}

.about_card__JvHzS .about_text__lB3Pw {
    max-width: 460px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.about_card__JvHzS .about_text__lB3Pw p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

@media (max-width: 649px) {
    .about_card__JvHzS .about_text__lB3Pw {
        font-size: 12px;
        width: 100%;
        gap: 10px;
        margin-bottom: 20px;
    }
}

@media (min-width: 650px) and (max-width: 1199px) {
    .about_card__JvHzS .about_text__lB3Pw {
        max-width: 100%;
        gap: 30px;
        margin-bottom: 30px;
    }
}

.about_card__JvHzS .about_wrapIcon__az6B_ {
    display: grid;
    grid-template-columns: repeat(1, auto);
    gap: 10px;
}

@media (max-width: 649px) {
    .about_card__JvHzS .about_wrapIcon__az6B_ {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (min-width: 650px) and (max-width: 1199px) {
    .about_card__JvHzS .about_wrapIcon__az6B_ {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.about_card__JvHzS .about_wrapIcon__az6B_ > div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about_card__JvHzS .about_wrapIcon__az6B_ > div img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.about_card__JvHzS .about_wrapIcon__az6B_ > div {
    font-size: 16px;
    color: #161616;
    font-weight: 500;
}

@media (max-width: 649px) {
    .about_card__JvHzS .about_wrapIcon__az6B_ > div {
        font-size: 14px;
    }
}

.about_image__nuUZU {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

@media (max-width: 649px) {
    .about_image__nuUZU {
        width: 100%;
        max-width: 100%;
    }
}

/* Subtitle style for consistency */
.subTitle_subTitle__57TUW {
    background: hsla(0, 0%, 91%, 0.5);
    padding: 4px 8px;
    border-left: 2px solid #ff6913;
    font-size: 14px;
    color: #282828;
    display: inline-block;
    margin-bottom: 5px;
}

@media (max-width: 649px) {
    .subTitle_subTitle__57TUW {
        font-size: 12px;
    }
}

@media (min-width: 650px) and (max-width: 1199px) {
    .subTitle_subTitle__57TUW {
        font-size: 12px;
    }
}

/* We Offer Section - Based on martianexpress.us */
.offer_offer__D2uBF {
    position: relative;
    background-image: url('./background-offer.webp');
    background-color: #3a3a3c;
    background-size: cover;
}

@media (max-width: 649px) {
    .offer_offer__D2uBF {
        background-image: none;
    }
}

@media (min-width: 650px) and (max-width: 1199px) {
    .offer_offer__D2uBF {
        background-image: none;
    }
}

.offer_wrapper__g9c7c {
    padding: 40px 0 60px;
    display: flex;
    position: relative;
}

@media (max-width: 649px) {
    .offer_wrapper__g9c7c {
        flex-direction: column-reverse;
        padding: 40px 0 0;
    }
}

@media (min-width: 650px) and (max-width: 1199px) {
    .offer_wrapper__g9c7c {
        flex-direction: column-reverse;
        padding: 40px 0 0;
    }
}

.offer_imageWrapper__BbQve {
    position: absolute;
    left: -5%;
}

.offer_imageWrapper__BbQve .offer_image__qgej2 {
    position: absolute;
    object-fit: contain;
    max-width: 700px;
    max-height: 700px;
    left: -100px;
}

@media (max-width: 649px) {
    .offer_imageWrapper__BbQve {
        display: none;
    }
}

@media (min-width: 650px) and (max-width: 1199px) {
    .offer_imageWrapper__BbQve {
        display: none;
    }
}

.offer_imageWrapperMobile__hfCd_ {
    display: none;
    position: relative;
}

@media (min-width: 650px) and (max-width: 1199px) {
    .offer_imageWrapperMobile__hfCd_ {
        display: block;
        background-image: url('./background-offer-mobile.webp');
        height: 500px;
        width: 100%;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50%;
    }
}

@media (max-width: 649px) {
    .offer_imageWrapperMobile__hfCd_ {
        display: block;
        background-image: url('./background-offer-mobile.webp');
        height: 225px;
        width: 100%;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50%;
    }
    
    .offer_imageWrapperMobile__hfCd_ .offer_image__qgej2 {
        position: absolute;
        width: 100%;
        height: auto;
    }
}

@media (min-width: 650px) and (max-width: 1199px) {
    .offer_imageWrapperMobile__hfCd_ .offer_image__qgej2 {
        position: absolute;
        object-fit: contain;
        width: 100%;
        height: 600px;
    }
}

.offer_tabsWrapper__Lwnsg {
    width: 742px;
    max-width: 100%;
    margin-left: auto;
}

@media (max-width: 649px) {
    .offer_tabsWrapper__Lwnsg {
        margin-left: 0;
        padding: 0 20px;
    }
}

@media (min-width: 650px) and (max-width: 1199px) {
    .offer_tabsWrapper__Lwnsg {
        margin-left: 0;
        padding: 0 20px;
        max-width: 100%;
    }
}

.offer_tabsWrapper__Lwnsg h3 {
    color: #fff;
    font-size: 35px;
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
    font-weight: 700;
    margin-bottom: 14px;
    text-align: center;
}

@media (max-width: 649px) {
    .offer_tabsWrapper__Lwnsg h3 {
        font-size: 24px;
    }
}

/* Tabs Styles */
.tabs_tabs__h0LIS ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.tabs_tabs__h0LIS li {
    margin: 0;
}

.tabTitle_button__DJJyB {
    background: none;
    border: none;
    color: hsla(0, 0%, 100%, 0.5);
    font-size: 18px;
    font-weight: 600;
    padding: 20px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tabTitle_button__DJJyB:hover {
    color: #fff;
    border-bottom-color: #ff6913;
}

.tabTitle_active__ZTGVi .tabTitle_button__DJJyB {
    color: #fff;
    border-bottom-color: #ff6913;
}

@media (max-width: 649px) {
    .tabTitle_button__DJJyB {
        font-size: 14px;
        padding: 15px 20px;
    }
}

.tabsContent_wrapper__dbJGN {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
}

.tabsContent_block__kjwQO {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    width: calc(50% - 15px);
    transition: all 0.3s ease;
    flex: 0 0 calc(50% - 15px);
    box-sizing: border-box;
}

.tabsContent_block__kjwQO:hover {
    background: rgba(255, 255, 255, 0.08);
}

.tabsContent_block__kjwQO h4 {
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.tabsContent_block__kjwQO h4 span {
    color: #ff6913;
    margin-right: 12px;
}

.tabsContent_block__kjwQO p {
    color: hsla(0, 0%, 100%, 0.7);
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 649px) {
    .tabsContent_block__kjwQO {
        width: 100%;
        flex: 0 0 100%;
    }
    
    .tabsContent_block__kjwQO h4 {
        font-size: 18px;
    }
    
    .tabsContent_block__kjwQO p {
        font-size: 14px;
    }
}

@media (min-width: 650px) and (max-width: 1199px) {
    .tabsContent_block__kjwQO {
        width: 100%;
        flex: 0 0 100%;
    }
    
    .tabsContent_block__kjwQO h4 {
        font-size: 20px;
    }
    
    .tabsContent_block__kjwQO p {
        font-size: 15px;
    }
}

/* Services Section - Based on martianexpress.us */
.services_section__hLVNi {
    background: #f4f4f4;
    padding: 120px 0;
}

@media (max-width: 649px) {
    .services_section__hLVNi {
        padding: 100px 60px 20px;
    }
}

@media (min-width: 650px) and (max-width: 1199px) {
    .services_section__hLVNi {
        padding: 60px 20px;
    }
}

.services_title__lviWb {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 75px;
}

@media (max-width: 649px) {
    .services_title__lviWb {
        margin-bottom: 32px;
    }
}

.services_title__lviWb h2 {
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
    font-size: 35px;
    font-weight: 700;
    color: #161616;
}

@media (max-width: 649px) {
    .services_title__lviWb h2 {
        font-size: 18px;
    }
}

.services_wrap__AadHG {
    display: grid;
    grid-row-gap: 100px;
    row-gap: 50px;
    grid-column-gap: 190px;
    column-gap: 100px;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 649px) {
    .services_wrap__AadHG {
        row-gap: 40px;
        grid-template-columns: 1fr;
    }
}

@media (min-width: 650px) and (max-width: 1199px) {
    .services_wrap__AadHG {
        gap: 50px;
        grid-template-columns: repeat(2, 1fr);
    }
}

.services_service__EO33S {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.services_serviceIcon__XYzwP {
    margin-bottom: 10px;
}

.services_serviceIcon__XYzwP img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.services_details__HmE6f {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.services_details__HmE6f h4 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    color: #161616;
    margin: 0;
}

@media (max-width: 649px) {

    .services_service__EO33S {
        align-items: center;
    }
    
    .services_details__HmE6f h4 {
        font-size: 20px;
        text-align: center;
    }

    .services_details__HmE6f p {
        text-align: center;
    }
}

.services_details__HmE6f p {
    font-size: 16px;
    color: #666c89;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 649px) {
    .services_details__HmE6f p {
        font-size: 14px;
    }
}

/* FAQ Section - Based on martianexpress.us */
.faq_faq__dxIJx {
    padding: 100px 0;
}

@media (max-width: 649px) {
    .faq_faq__dxIJx {
        padding: 40px 20px;
    }
}

@media (min-width: 650px) and (max-width: 1199px) {
    .faq_faq__dxIJx {
        padding: 40px 20px;
    }
}

.faq_wrapper__tTUIx {
    gap: 80px;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 649px) {
    .faq_wrapper__tTUIx {
        gap: 0;
        flex-direction: column;
    }
}

@media (min-width: 650px) and (max-width: 1199px) {
    .faq_wrapper__tTUIx {
        gap: 0;
        flex-direction: column;
    }
}

.faq_title__TFnHc {
    margin-bottom: 24px;
}

.faq_title__TFnHc h2 {
    font-size: 35px;
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
    font-weight: 700;
    margin-top: 12px;
    color: #161616;
}

@media (max-width: 649px) {
    .faq_title__TFnHc h2 {
        font-size: 18px;
    }
}

.faq_accordion__rv4m_ {
    width: 600px;
    max-width: 100%;
    display: grid;
    grid-row-gap: 12px;
    row-gap: 12px;
}

@media (max-width: 649px) {
    .faq_accordion__rv4m_ {
        width: 100%;
        margin-bottom: 40px;
    }
}

@media (min-width: 650px) and (max-width: 1199px) {
    .faq_accordion__rv4m_ {
        width: 100%;
        margin-bottom: 40px;
    }
}

.faq_accordionItem__ivB1X {
    padding: 20px;
    background: #fff;
    border: 1px solid hsla(0, 0%, 9%, .08);
    border-radius: 12px;
    box-shadow: 0 0 60px rgba(58, 58, 60, .1);
    transition: all 0.3s ease;
}

.faq_accordionItem__ivB1X:hover {
    border: 1px solid #ff6913;
}

.faq_accordionItem__ivB1X.active {
    border: 1px solid #ff6913;
}

.faq_accordionButton {
    background: none;
    padding: 0;
    border: none;
    font-size: 20px;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

@media (max-width: 649px) {
    .faq_accordionButton {
        font-size: 15px;
    }
}

.faq_accordionItemTitle__clT2w {
    width: 100%;
    display: flex;
    text-align: left;
    align-items: center;
    justify-content: space-between;
    color: #161616;
}

.faq_icon {
    flex-shrink: 0;
    margin-left: 15px;
}

.faq_accordionItem__ivB1X.active .faq-icon-circle {
    fill: #ff6913 !important;
    fill-opacity: 1;
}

.faq_accordionItem__ivB1X.active .faq-icon-path {
    stroke: #fff;
}

.faq_accordionContent__Pa4aq {
    margin-top: 20px;
    padding-top: 12px;
    font-size: 15px;
    border-top: 1px solid hsla(0, 0%, 9%, .1);
    color: #666;
    line-height: 1.6;
    display: none;
}

.faq_accordionContent__Pa4aq p {
    margin: 0;
}

.faq_accordionItem__ivB1X.active .faq_accordionContent__Pa4aq {
    display: block;
}

.faq_image__E7ypr {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    margin-top: 10px;
}

/* CTA / Contact Section - Based on martianexpress.us */
.contacts_contacts__M_W8m {
    padding: 100px 0;
    position: relative;
    background-color: #fff;
}

.contacts_contacts__M_W8m::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.contacts_contacts__M_W8m > .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 649px) {
    .contacts_contacts__M_W8m {
        padding: 10px 0px 30px;
    }
}

@media (min-width: 650px) and (max-width: 1199px) {
    .contacts_contacts__M_W8m {
        padding: 60px 20px;
    }
}

.contacts_wrapper__custom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

@media (max-width: 649px) {
    .contacts_wrapper__custom {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (min-width: 650px) and (max-width: 1199px) {
    .contacts_wrapper__custom {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contacts_left__jAJuy {
    width: 100%;
}

.contacts_image__QJJFK {
    object-fit: contain;
    border-radius: 8px;
    position: absolute;
    left: -290px;
}

@media (max-width: 649px) {
    .contacts_image__QJJFK {
        display: none;
    }
}

.contacts_right__S50yZ {
    padding: 40px;
    background: #282828;
    border-radius: 12px;
}

.contacts_subtitle__tndoH {
    margin-bottom: 12px;
}

.contacts_right__S50yZ h2 {
    font-size: 35px;
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
    font-weight: 700;
    margin-bottom: 0px;
    color: #fff;
}

@media (max-width: 649px) {
    .contacts_right__S50yZ h2 {
        font-size: 24px;
    }
}

.contacts_right__S50yZ > p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

@media (max-width: 649px) {
    .contacts_right__S50yZ > p {
        font-size: 14px;
    }
}

.contacts_form__wrapper {
    margin-top: 30px;
}

/* Contact Form Styles */
.contacts_inputs__joyns {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}

.input_label__qBRrc {
    font-size: 14px;
    font-weight: 500;
    color: #161616;
    margin-bottom: 8px;
}

.input_input__JVjrL,
.input_textarea__vA2Az {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid hsla(0, 0%, 9%, 0.2);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    color: #161616;
    transition: border-color 0.3s ease;
}

.input_input__JVjrL:focus,
.input_textarea__vA2Az:focus {
    outline: none;
    border-color: #ff6913;
}

.input_textarea__vA2Az {
    resize: vertical;
    min-height: 120px;
}

.button_button__SRc2Y.contacts_button__eayrH {
    background: #ff6913;
    color: white;
    border: none;
    padding: 17px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 1000px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
}

.button_button__SRc2Y.contacts_button__eayrH:hover {
    background: #e55a00;
    transform: translateY(-2px);
}

.button_button__SRc2Y.contacts_button__eayrH:active {
    transform: translateY(0);
}

.contacts_no_form__message {
    padding: 20px;
    background: #fff3e6;
    border: 1px solid #ff6913;
    border-radius: 8px;
    color: #ff6913;
    text-align: center;
    font-weight: 500;
}

/* Contact Form 7 Specific Styles */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wpcf7-form label {
    display: flex;
    flex-direction: column;
    color: #fff;
}

.wpcf7-form .wpcf7-form-control-wrap {
    display: block;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="date"],
.wpcf7-form input[type="number"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid rgba(58, 58, 60, 0.2);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    color: #161616;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form input[type="date"]:focus,
.wpcf7-form input[type="number"]:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
    outline: none;
    border-color: #ff6913;
    background-color: rgba(255, 255, 255, 0.15);
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.wpcf7-form textarea {
    resize: vertical;
    min-height: 50px;
    max-height: 150px;
}

.wpcf7-form .wpcf7-submit {
    background: #ff6913;
    color: white !important;
    border: none;
    padding: 17px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 1000px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    margin-top: 10px;
}

.wpcf7-form .wpcf7-submit:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 105, 19, 0.3);
}

.wpcf7-form .wpcf7-submit:active {
    transform: translateY(0);
}

.wpcf7-response-output {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
}

.wpcf7-mail-sent-ok {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.wpcf7-mail-sent-ng,
.wpcf7-aborted,
.wpcf7-spam {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.wpcf7-validation-errors {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
}

.wpcf7-not-valid-tip {
    color: #ff6913;
    font-size: 14px;
    margin-top: 5px;
}

.wpcf7-form-control-wrap {
    position: relative;
}

.wpcf7-not-valid .wpcf7-form-control {
    border-color: #ff6913;
}

@media (max-width: 649px) {
    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form input[type="url"],
    .wpcf7-form textarea {
        font-size: 14px;
        padding: 14px 18px;
    }
    
    .wpcf7-form .wpcf7-submit {
        padding: 15px 35px;
        font-size: 13px;
        width: 100%;
    }
}

/* Partners / Sponsors Section - Based on martianexpress.us */
.sponsors_sponsors__leMYb {
    padding: 120px 0;
}

@media (max-width: 649px) {
    .sponsors_sponsors__leMYb {
        padding: 40px 0 40px 20px;
    }
}

@media (min-width: 650px) and (max-width: 1199px) {
    .sponsors_sponsors__leMYb {
        padding: 60px 20px;
    }
}

.sponsors_ul__5aD7t {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    overflow-x: auto;
    grid-column-gap: 65px;
    column-gap: 65px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 649px) {
    .sponsors_ul__5aD7t {
        column-gap: 40px;
    }
}

.sponsors_ul__5aD7t li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsors_ul__5aD7t li img,
.sponsors_ul__5aD7t li svg {
    width: 120px;
    height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.sponsors_ul__5aD7t li:hover img,
.sponsors_ul__5aD7t li:hover svg {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 649px) {
    .sponsors_ul__5aD7t li img,
    .sponsors_ul__5aD7t li svg {
        width: 100px;
        height: 40px;
    }
}

/* Testimonials Section */
.testimonials_section__custom {
    background: #f4f4f4;
    padding: 100px 0;
}

@media (max-width: 649px) {
    .testimonials_section__custom {
        padding: 60px 20px;
    }
}

@media (min-width: 650px) and (max-width: 1199px) {
    .testimonials_section__custom {
        padding: 60px 20px;
    }
}

.testimonials_header__custom {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.testimonials_header__custom h2 {
    font-size: 35px;
    font-weight: 700;
    color: #161616;
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
    margin: 0;
}

@media (max-width: 649px) {
    .testimonials_header__custom h2 {
        font-size: 24px;
    }
}

.testimonials_wrapper__custom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 649px) {
    .testimonials_wrapper__custom {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.testimonial_card__custom {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.testimonial_card__custom:hover {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.testimonial_quote__custom {
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 120px;
    font-weight: 700;
    color: rgba(255, 105, 19, 0.1);
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 649px) {
    .testimonial_quote__custom {
        font-size: 80px;
        top: 0;
        left: 5px;
    }
}

.testimonial_content__custom {
    flex: 1;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial_text__custom {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
    font-weight: 400;
}

@media (max-width: 649px) {
    .testimonial_text__custom {
        font-size: 14px;
        line-height: 1.5;
    }
}

.testimonial_author__custom {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
    position: relative;
    z-index: 1;
}

.testimonial_name__custom {
    font-size: 18px;
    font-weight: 600;
    color: #161616;
    margin: 0 0 4px 0;
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
}

@media (max-width: 649px) {
    .testimonial_name__custom {
        font-size: 16px;
    }
}

.testimonial_company__custom {
    font-size: 14px;
    font-weight: 400;
    color: #ff6913;
    margin: 0;
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
}

@media (max-width: 649px) {
    .testimonial_company__custom {
        font-size: 13px;
    }
}

/* Careers Section */
.careers_section__custom {
    background: #fff;
    padding: 100px 0;
}

@media (max-width: 649px) {
    .careers_section__custom {
        padding: 60px 20px;
    }
}

@media (min-width: 650px) and (max-width: 1199px) {
    .careers_section__custom {
        padding: 60px 20px;
    }
}

.careers_header__custom {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.careers_header__custom h2 {
    font-size: 35px;
    font-weight: 700;
    color: #161616;
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
    margin: 0;
}

@media (max-width: 649px) {
    .careers_header__custom h2 {
        font-size: 24px;
    }
}

.careers_wrapper__custom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 650px) and (max-width: 1199px) {
    .careers_wrapper__custom {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 649px) {
    .careers_wrapper__custom {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.career_card__custom {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.career_card__custom:hover {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.career_image__custom {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f4f4f4;
}

.career_image__custom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.career_card__custom:hover .career_image__custom img {
    transform: scale(1.05);
}

.career_content__custom {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.career_title__custom {
    font-size: 20px;
    font-weight: 600;
    color: #161616;
    margin: 0;
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
}

@media (max-width: 649px) {
    .career_title__custom {
        font-size: 18px;
    }
}

.career_text__custom, .career_content__custom p, .career_content__custom ul, .career_content__custom ol {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    flex: 1;
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
    font-weight: 400;
}

.career_content__custom ul li {
    list-style: disc;
    margin-left: 10px;
}

@media (max-width: 649px) {
    .career_text__custom {
        font-size: 13px;
        line-height: 1.5;
    }
}

.career_call_button__custom {
    display: inline-block;
    padding: 12px 28px;
    background: #ff6913;
    color: #fff;
    text-decoration: none;
    border-radius: 1000px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 8px;
}

.career_call_button__custom:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 105, 19, 0.3);
}

/* Contact Info Section */
.contact_info_section__custom {
    padding: 100px 0;
}

@media (max-width: 649px) {
    .contact_info_section__custom {
        padding: 60px 20px;
    }
}

@media (min-width: 650px) and (max-width: 1199px) {
    .contact_info_section__custom {
        padding: 60px 20px;
    }
}

.contact_info_header__custom {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.contact_info_header__custom h2 {
    font-size: 35px;
    font-weight: 700;
    color: #161616;
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
    margin: 0;
}

@media (max-width: 649px) {
    .contact_info_header__custom h2 {
        font-size: 24px;
    }
}

.contact_info_wrapper__custom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 649px) {
    .contact_info_wrapper__custom {
        gap: 32px;
        flex-direction: column;
    }
}

@media (min-width: 650px) and (max-width: 1199px) {
    .contact_info_wrapper__custom {
        gap: 32px;
    }
}

.contact_info_item__custom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

@media (max-width: 649px) {
    .contact_info_item__custom {
        max-width: 100%;
        flex-direction: row;
        text-align: left;
        gap: 20px;
    }
}

.contact_info_icon__custom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact_info_icon__custom img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.contact_info_content__custom {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact_info_label__custom {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin: 0;
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact_info_value__custom {
    font-size: 18px;
    font-weight: 600;
    color: #161616;
    margin: 0;
    font-family: 'Onest', 'Inter', 'Arial', sans-serif;
}

@media (max-width: 649px) {
    .contact_info_value__custom {
        font-size: 16px;
    }
}

