.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background-color: #df3a1b;
    margin: 15px auto 0;
}

.btn {
    padding: 15px 30px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background-color: #df3a1b;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #c93318;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline-primary {
    background-color: transparent;
    color: #df3a1b;
    border: 2px solid #df3a1b;
}

.btn-outline-primary:hover {
    background-color: #df3a1b;
    color: white;
}

.btn-white {
    background-color: white;
    color: #df3a1b;
}

.btn-white:hover {
    background-color: #f0f0f0;
}

.btn-link {
    color: #df3a1b;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
}

.btn-link:hover {
    text-decoration: underline;
}

.hero-slider {
    width: 100%;
    height: 600px;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.hero-slider .swiper-slide .container {
    color: #ffffff;
    text-align: left !important;
    z-index: 2;
    padding-left: 50px;
    margin-left: 330px !important;
    margin-right: auto !important;
    max-width: 800px !important;
}

.swiper-slide h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.2;
}

.swiper-slide p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #f1f1f1;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.features-bar {
    background-color: #111;
    color: white;
    padding: 30px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.features-bar .feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-text h4 {
    margin: 0 0 5px 0;
    font-size: 15px;
    text-transform: uppercase;
}

.feature-text p {
    margin: 0;
    font-size: 15px;
    color: #aaa;
}

.search-section {
    padding: 60px 0;
    background-color: white;
    text-align: center;
}

.search-subtitle {
    margin-bottom: 30px;
    color: #666;
}

.search-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.search-select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-width: 200px;
    color: #555;
    background-color: white;
}

.search-help {
    font-size: 13px;
    color: #666;
}

.search-help a {
    color: #df3a1b;
    text-decoration: none;
}

.search-help a:hover {
    text-decoration: underline;
}

.products-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.product-card {
    background-color: white;
    padding: 20px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.product-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    min-height: 40px;
}

.segments-section {
    background-color: #1a1a1a;
    padding: 80px 0;
    color: white;
}

.segments-section .section-title {
    color: white;
}

.segments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.segment-card {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    overflow: hidden;
}

.segment-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.segment-overlay h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    text-transform: uppercase;
}

.segment-overlay p {
    margin: 0;
    font-size: 15px;
    color: #ddd;
}

.why-choose-section {
    padding: 80px 0;
    background-color: white;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    text-align: center;
}

.differentials-grid .differential-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.differential-item h4 {
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.differential-item p {
    font-size: 15px;
    color: #666;
}

.cta-split-section {
    display: flex;
    position: relative;
}

.cta-half {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    align-items: center;
}

.cta-left {
    background-color: #2a2a2a;
    color: white;
    justify-content: flex-end;
}

.cta-right {
    background-color: #df3a1b;
    color: white;
    justify-content: flex-start;
}

.cta-content {
    max-width: 400px;
}

.cta-content h2 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cta-content p {
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.cta-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.technical-section {
    padding: 80px 0;
    background-color: white;
}

.technical-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.tech-card {
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
}

.tech-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.tech-content {
    padding: 20px;
}

.tech-date {
    font-size: 10px;
    color: #999;
    margin-bottom: 10px;
    display: block;
}

.tech-content h3 {
    font-size: 13px;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.tech-cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.tech-cta-card h3 {
    font-size: 14px;
    margin-bottom: 20px;
}

.feature-icon, 
.segment-icon, 
.differential-icon, 
.tech-cta-icon {
    font-size: 28px;
    color: #df3a1b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-bar .feature-icon {
    font-size: 36px;
}

.segments-grid .segment-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.differentials-grid .differential-icon,
.tech-cta-card .tech-cta-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .products-grid,
    .differentials-grid,
    .technical-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .cta-split-section {
        flex-direction: column;
    }

    .cta-left,
    .cta-right {
        justify-content: center;
        text-align: center;
    }

    .cta-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-slider,
    .hero-slider .swiper-wrapper {
        height: auto !important;
        min-height: initial !important;
    }

    .swiper-slide {
        height: auto !important;
        padding: 40px 0 !important;
    }

    .hero-slider .swiper-slide .container,
    .swiper-slide .container {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        max-width: 100% !important;
        text-align: center !important;
    }

    .swiper-slide h1 {
        font-size: 1.5rem;
    }

    .swiper-slide p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .features-grid,
    .segments-grid,
    .products-grid,
    .differentials-grid,
    .technical-grid {
        grid-template-columns: 1fr !important;
    }

    .search-form {
        flex-direction: column;
        gap: 10px;
    }

    .search-select {
        width: 100%;
    }

    .cta-half {
        padding: 40px 20px;
        text-align: center;
        justify-content: center;
    }

    .cta-circle {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: -15px auto;
        z-index: 2;
    }
}