* {
    
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #1a1a1a;
    color: white;
    padding: 12px 0;
}

.top-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar .contact-info {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar .contact-item .icon {
    width: 40px;
    height: 40px;
    background: #e31e24;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.top-bar .contact-item .text {
    line-height: 1.3;
}

.top-bar .contact-item .text .label {
    font-size: 12px;
    opacity: 0.8;
}

.top-bar .contact-item .text .value {
    font-weight: 600;
    font-size: 14px;
}

/* ===== MAIN NAVIGATION ===== */
.main-nav {
    background: #e31e24;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-nav .container,
.main-nav .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.main-nav .logo {
    display: flex;
    align-items: center;
    z-index: 101;
}

.main-nav .logo img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
}

.main-nav .nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.main-nav .nav-links > li {
    position: relative;
    margin: 0;
}

.main-nav .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    padding: 20px 12px;
    display: block;
    transition: all 0.3s;
    position: relative;
    white-space: nowrap;
}

.main-nav .nav-links a:hover {
    color: #000;
}

.main-nav .nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    width: calc(100% - 24px);
    height: 3px;
    background: #000;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.main-nav .nav-links > li > a:hover::after {
    transform: scaleX(1);
}

.has-dropdown > a::before {
    content: ' ▾';
    font-size: 11px;
    margin-left: 4px;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-top: 3px solid #e31e24;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 10px 0;
    z-index: 200;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    padding: 0;
}

.dropdown a {
    color: #333 !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
    text-transform: none !important;
    font-weight: 500 !important;
    border-left: 3px solid transparent;
    transition: all 0.25s;
}

.dropdown a:hover {
    background: #f8f9fa;
    color: #e31e24 !important;
    border-left-color: #e31e24;
    padding-left: 25px !important;
}

.dropdown a::after {
    display: none !important;
}

.main-nav .get-quote {
    background: white;
    color: #e31e24;
    padding: 12px 30px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    margin-left: 20px;
}

.main-nav .get-quote:hover {
    background: #000;
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: none;
}

.slide.active {
    opacity: 1;
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: #e31e24;
    width: 30px;
    border-radius: 6px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(227, 30, 36, 0.8);
    color: white;
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.slider-arrow:hover {
    background: #e31e24;
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    width: 100%;
}

.about-images img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content h1 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content h1 .red-text {
    color: #e31e24;
}

.about-content .subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 14px;
}

.service-item .check {
    width: 20px;
    height: 20px;
    background: #e31e24;
    color: white;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.read-more-btn {
    background: #e31e24;
    color: white;
    padding: 15px 35px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    display: inline-block;
}

.read-more-btn:hover {
    background: #c41218;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

/* ===== FEATURED PRODUCTS SECTION ===== */
.featured-products {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.section-header h2 .red-text {
    color: #e31e24;
}

.section-header p {
    color: #666;
    font-size: 16px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    height: 400px;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.product-card .img-default {
    opacity: 1;
}

.product-card .img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card:hover .img-default {
    opacity: 0;
}

.product-card:hover .img-hover {
    opacity: 1;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px 20px;
    color: white;
}

.product-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* ===== APPAREL CATEGORIES SECTION ===== */
.apparel-categories {
    padding: 80px 0;
    background: #fff;
}

.apparel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.apparel-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
}

.apparel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.apparel-card:hover img {
    transform: scale(1.1);
}

.apparel-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.apparel-overlay h3 {
    font-size: 28px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.apparel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
    transition: background 0.3s;
}

.apparel-card:hover::before {
    background: rgba(0,0,0,0.2);
}

.more-categories-btn {
    display: block;
    margin: 0 auto;
    background: #e31e24;
    color: white;
    padding: 15px 40px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.more-categories-btn:hover {
    background: #c41218;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

/* ===== BEST PRODUCTS CAROUSEL SECTION ===== */
.best-products {
    padding: 80px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.badge {
    display: inline-block;
    background: #e31e24;
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.carousel-container {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease;
}

.carousel-card {
    flex: 0 0 25%;
    padding: 0 12px;
    min-width: 0;
}

.carousel-card-inner {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.carousel-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(227, 30, 36, 0.15);
}

.carousel-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f0f0f0;
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.carousel-card-inner:hover .carousel-image img {
    transform: scale(1.05);
}

.carousel-info {
    padding: 18px;
}

.carousel-category {
    color: #e31e24;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.carousel-info h4 {
    font-size: 15px;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
    font-weight: 700;
}

.carousel-article {
    color: #999;
    font-size: 12px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e31e24;
    color: #e31e24;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: #e31e24;
    color: white;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: #e31e24;
    width: 30px;
    border-radius: 5px;
}

/* ===== MANUFACTURING PROCESS SECTION ===== */
.manufacturing-process {
    padding: 80px 0;
    background: #fff;
}

.process-header {
    text-align: center;
    margin-bottom: 50px;
}

.process-header h2 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.process-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #e31e24;
}

.process-header p {
    color: #666;
    font-size: 16px;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-step {
    text-align: center;
    transition: transform 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 5px solid #fff;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.process-step:hover .process-image img {
    transform: scale(1.1);
}

.process-number {
    font-size: 24px;
    font-weight: 800;
    color: #e31e24;
    margin-bottom: 10px;
}

.process-title {
    font-size: 18px;
    font-weight: 700;
    color: #e31e24;
    margin-bottom: 12px;
}

.process-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== CTA BAR SECTION ===== */
.cta-bar {
    background: #e31e24;
    padding: 0;
    margin-top: 0;
}

.cta-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 35px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-bar h2 {
    color: white;
    font-size: 28px;
    font-weight: 800;
    margin: 0;
}

.cta-bar .cta-btn {
    background: white;
    color: #e31e24;
    padding: 14px 35px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    letter-spacing: 1px;
}

.cta-bar .cta-btn:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 0;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e31e24;
}

.security-code-display {
    padding: 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 5px;
    text-align: center;
}

.contact-submit-btn {
    width: 100%;
    background: #e31e24;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-submit-btn:hover {
    background: #c62828;
}

.form-success {
    background: #4caf50;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
}

/* ===== FOOTER SECTION ===== */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h3 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #e31e24;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 22px;
    font-weight: 900;
    color: #e31e24;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}

.footer-logo-text span {
    display: block;
    color: white;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
}

.footer-col p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    color: #e31e24;
    font-weight: bold;
    transition: transform 0.3s;
}

.footer-links a:hover {
    color: #e31e24;
    padding-left: 5px;
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 14px;
}

.contact-list .icon {
    width: 28px;
    height: 28px;
    background: #e31e24;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    color: white;
}

.contact-list a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.5;
}

.contact-list a:hover {
    color: #e31e24;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 16px;
}

.social-icons a:hover {
    background: #e31e24;
    transform: translateY(-3px);
}

.copyright {
    background: #0f0f0f;
    color: #888;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    font-size: 14px;
    border-top: 1px solid #2a2a2a;
}

.copyright a {
    color: #e31e24;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1100px) {
    .main-nav .nav-links a {
        padding: 20px 8px;
        font-size: 13px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px 30px;
    }

    .footer-col:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 968px) {
    .top-bar .contact-info {
        justify-content: center;
    }
    
    .main-nav .container,
    .main-nav .nav-container {
        flex-wrap: wrap;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .main-nav .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #e31e24;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        justify-content: flex-start;
    }
    
    .main-nav .nav-links.active {
        display: flex;
    }
    
    .main-nav .nav-links > li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }
    
    .main-nav .nav-links > li > a {
        padding: 15px 20px;
    }
    
    .main-nav .get-quote {
        display: none;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #c41218;
        display: none;
        min-width: 100%;
    }
    
    .has-dropdown.open .dropdown {
        display: block;
    }
    
    .dropdown a {
        padding-left: 40px !important;
    }
    
    .hero-slider {
        height: 400px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .products-grid,
    .apparel-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .carousel-card {
        flex: 0 0 50%;
    }

    .process-image {
        width: 180px;
        height: 180px;
    }

    .cta-bar .container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-col:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .top-bar .contact-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav .logo img {
        max-height: 50px;
    }

    .products-grid,
    .apparel-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .apparel-card {
        height: 250px;
    }

    .apparel-overlay h3 {
        font-size: 24px;
    }

    .carousel-card {
        flex: 0 0 100%;
    }

    .process-image {
        width: 200px;
        height: 200px;
    }

    .process-header h2 {
        font-size: 26px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col:first-child {
        grid-column: auto;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-col h3 {
        text-align: center;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .contact-list li {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }

    .cta-bar h2 {
        font-size: 22px;
    }
    
    .product-card {
        min-height: 300px;
    }
}