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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #cccccc;
}

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

/* Header Styles - Updated 60% opacity */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #007bff;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0;
    min-width: 450px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    overflow: hidden;
}

.dropdown-content {
    display: flex;
    align-items: stretch;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
    position: relative;
}

.dropdown-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 20px;
    height: 2px;
    background-color: #e0e0e0;
}



.dropdown-menu li a:hover {
    background-color: #f8f9fa;
}

.dropdown-image {
    padding: 0;
    margin: 0;
    flex: 0 0 200px;
}

.dropdown-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px 0 0 8px;
    object-fit: contain;
}

.dropdown-links {
    flex: 1;
    padding: 1rem 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100vh;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/bg1-w.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 80px;
    position: relative;
}


.hero-content {
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content {
    padding: 4rem 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 500px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}



/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: white;
    color: #000000;
    text-decoration: none;
    border-radius: 0;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid #000000;
    box-shadow: none;
}

.cta-button:hover {
    background: #000000;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background: white;
    color: #000000;
    border-color: #000000;
}

.cta-button.secondary:hover {
    background: #000000;
    color: white;
}

/* Products Section */
.products {
    padding: 0;
    margin: 0;
    background: #18428F;
}

.products-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    align-items: stretch;
    min-height: 600px;
    padding: 0;
}

/* Left side: Image mosaic */
.products-mosaic {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 500px;
    margin: 0;
    padding: 0;
    background: white;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    margin: 0;
    padding: 0;
}

.mosaic-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.mosaic-item:hover {
    transform: scale(1.02);
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    max-width: 100%;
    max-height: 100%;
}

.mosaic-item:hover img {
    transform: scale(1.1);
}

/* Image container with transparent button */
.image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.transparent-button {
    position: absolute;
    top: calc(50% + 60px);
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    text-decoration: none;
    display: inline-block;
}

.image-container:hover .transparent-button {
    opacity: 1;
    visibility: visible;
}

.transparent-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.05);
}

/* Mobile responsive - Make buttons 30% smaller and position at bottom */
@media (max-width: 768px) {
    .transparent-button {
        top: auto;
        bottom: 20px;
        left: 50%;
        padding: 8px 16px;
        font-size: 10px;
        letter-spacing: 0.5px;
        transform: translate(-50%, 0) scale(0.7);
    }
    
    .transparent-button:hover {
        transform: translate(-50%, 0) scale(0.75);
    }
}

/* Right side: Content */
.products-content {
    text-align: center;
    padding: 6rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.products-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.products-content p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.products-logo {
    margin-top: 2rem;
    text-align: center;
}

.logo-clear {
    max-width: 300px;
    height: auto;
    opacity: 0.9;
}

/* Downloads Section */
.downloads {
    padding: 4rem 0;
    background: url('images/bg2-w.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.downloads-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #18428F;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease-in-out;
    padding: 0 15px;
}

.carousel-slide {
    flex: 0 0 calc(25% - 15px);
    height: 100%;
    opacity: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 70%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.slide-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #18428F;
    text-align: center;
    margin: 0;
    padding: 0 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #000080;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: white;
    border-color: #4169E1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}





/* More Info Section */
.moreinfo {
    padding: 6rem 0;
    background: #e9ecef;
    text-align: center;
}

.moreinfo-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.moreinfo-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Foundation Section */
.foundation {
    padding: 6rem 0;
    background: white;
    text-align: center;
}

.foundation-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.foundation-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* News Section */
.news {
    padding: 6rem 0;
    background: #f8f9fa;
}

.news h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

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

.news-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-date {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.news-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #0056b3;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-image {
        height: 48px;
        max-width: 224px;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Ocultar imágenes de dropdown en móviles */
    .dropdown-image {
        display: none !important;
    }
    
    .dropdown-content {
        flex-direction: column;
    }
    
    .dropdown-menu {
        min-width: 200px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 0;
    }
    
    .products-content {
        text-align: center;
        padding: 3rem 2rem;
    }
    
    .mosaic-grid {
        max-width: 100%;
        max-height: 100%;
        gap: 0;
        width: 100%;
        height: 100%;
    }
    
    .products-mosaic {
        min-height: auto;
        height: 100%;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 0;
        border-top: 1px solid #f0f0f0;
    }

    .nav-menu.active {
        left: 0;
    }
    
    /* Estilos para elementos principales del menú móvil */
    .nav-menu .nav-item {
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }
    
    .nav-menu .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 1.5rem 2rem;
        color: #333;
        font-size: 1rem;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        border-left: 3px solid transparent;
    }
    
    .nav-menu .nav-link:hover {
        background: #f8f9fa;
        color: #007bff;
        border-left-color: #007bff;
        padding-left: 2.5rem;
    }
    
    .nav-menu .nav-link i {
        float: right;
        margin-top: 0.2rem;
        transition: transform 0.3s ease;
    }
    
    .nav-menu .nav-item.active .nav-link i,
    .nav-menu .nav-item:hover .nav-link i {
        transform: rotate(180deg);
    }
    
    /* Estilos específicos para dropdowns en menú móvil */
    .nav-menu .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin: -0.5rem 0 0 0;
        min-width: auto;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu .dropdown-menu.active,
    .nav-menu .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }
    
    .nav-menu .dropdown-content {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    
    .nav-menu .dropdown-links {
        padding: 0;
        width: 100%;
        list-style: none;
    }
    
    .nav-menu .dropdown-links li {
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu .dropdown-links li:first-child {
        border-top: 1px solid #f0f0f0;
    }
    
    .nav-menu .dropdown-links li:last-child {
        border-bottom: none;
    }
    
    .nav-menu .dropdown-links li a {
        display: block;
        padding: 0.75rem 2rem;
        color: #333;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 400;
        background: transparent;
        border-radius: 0;
        text-align: left;
        transition: all 0.3s ease;
        position: relative;
        margin-left: 1rem;
    }
    
    .nav-menu .dropdown-links li a:hover {
        background: #f8f9fa;
        color: #007bff;
        padding-left: 2.5rem;
    }
    
    .nav-menu .dropdown-links li a:before {
        content: "•";
        position: absolute;
        left: 1rem;
        color: #007bff;
        font-weight: bold;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-menu .dropdown-links li a:hover:before {
        opacity: 1;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .moreinfo-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .products-content h2,
    .moreinfo-content h2,
    .foundation-content h2,
    .news h2,
    .downloads-title {
        font-size: 2rem;
    }
    
    .carousel-container {
        max-width: 95%;
    }
    
    .carousel-wrapper {
        height: 250px;
        gap: 20px;
        padding: 0 10px;
    }
    
    .carousel-slide {
        flex: 0 0 calc(25% - 15px);
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .mosaic-grid {
        width: 100vw;
        height: auto;
        max-width: 100vw;
    }
    
    .products-mosaic {
        width: 100%;
        height: auto;
        min-height: auto;
    }
    
    .carousel-wrapper {
        height: 200px;
        gap: 15px;
        padding: 0 8px;
    }
    
    .carousel-slide {
        flex: 0 0 calc(25% - 11.25px);
    }
    
    .slide-title {
        font-size: 0.7rem;
        padding: 0 2px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.products-content,
.moreinfo-content,
.foundation-content {
    animation: fadeInUp 1s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Our Story Page Styles */
.our-story-hero {
    background: url('images/bg1-us.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.our-story-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.our-story-hero .hero-content {
    position: relative;
    z-index: 2;
}

.our-story-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.our-story-hero .hero-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.our-story-main {
    background: white;
}

.intro-section {
    padding: 5rem 0;
    background: #f8f9fa;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.intro-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    line-height: 1.8;
}

.passion-section,
.purpose-section {
    padding: 5rem 0;
}

.passion-grid,
.purpose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.passion-content h2,
.purpose-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

.passion-content p,
.purpose-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.passion-image img,
.purpose-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.timeline-section {
    padding: 5rem 0;
    background: #f8f9fa;
    text-align: center;
}

.timeline-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #333;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #18428f;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #18428f;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    min-width: 120px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    flex: 1;
    max-width: 400px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.culture-section {
    padding: 5rem 0;
    background: white;
    text-align: center;
}

.culture-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #18428f;
}

.culture-content > p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    line-height: 1.8;
}

.culture-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-item i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 5rem 0;
    background: #18428f;
    color: white;
    text-align: center;
}

/* Specific CTA styling for Our Story page */
.our-story-main .cta-section {
    background: #18428f !important;
}

/* Alternative specific selector for Our Story page */
body:has(.our-story-main) .cta-section {
    background: #18428f !important;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

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

.cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: #007bff;
}

/* Responsive Design for Our Story Page */
@media (max-width: 768px) {
    .our-story-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .our-story-hero .hero-content p {
        font-size: 1.1rem;
    }
    
    .intro-content h2,
    .passion-content h2,
    .purpose-content h2,
    .timeline-section h2,
    .culture-content h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .passion-grid,
    .purpose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 30px;
    }
    
    .timeline-year {
        margin-bottom: 1rem;
        align-self: flex-start;
    }
    
    .timeline-content {
        margin: 0;
        max-width: none;
    }
    
    .culture-values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .our-story-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .intro-section,
    .passion-section,
    .purpose-section,
    .timeline-section,
    .culture-section,
    .cta-section {
        padding: 3rem 0;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
}

/* Runflats STD Page Styles */
.std_rf-banner {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    background: url('images/bg1-rfstd.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Runflats HD Page Styles */
.hd_rf-banner {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    background: url('images/bg1-rfhd.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-floating-image {
    position: absolute;
    left: 100px;
    bottom: 25px;
    z-index: 1;
}

.hero-floating-image img {
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-floating-image img:hover {
    transform: scale(1.05);
}

/* Kevlar specific floating image styles */
.kevlar-hero .hero-floating-image {
    position: absolute;
    left: 100px;
    bottom: 25px;
    z-index: 1;
}

.kevlar-hero .hero-floating-image img {
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.kevlar-hero .hero-floating-image img:hover {
    transform: scale(1.05);
}

.std_rf-banner .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 2px;
}

.std_rf-banner .hero-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #d51d29;
}

.std_rf-banner .hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.hd_rf-banner .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 2px;
}

.hd_rf-banner .hero-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #dc3545;
}

.hd_rf-banner .hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.runflats-main {
    background: white;
}

.images-showcase {
    padding: 4rem 0 2rem 0;
    background: #f8f9fa;
}

.showcase-intro {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.showcase-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.showcase-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.showcase-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

.benefits-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.benefits-content .intro-text {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.benefits-content > p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    line-height: 1.8;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-header {
    background: #007bff;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-header {
    transform: scale(1.05);
}

.benefit-header i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.benefit-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0;
    text-align: center;
    line-height: 1.2;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.performance-section {
    padding: 5rem 0;
    background: white;
}

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

.performance-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

.performance-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.performance-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.designed-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.designed-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #333;
    text-align: center;
}

.designed-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    font-size: 2rem;
    color: #007bff;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.ballistics-section {
    padding: 5rem 0;
    background: white;
}

.ballistics-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #333;
    text-align: center;
}

.specs-tables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.specs-table h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

.ballistics-table,
.mobility-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ballistics-table th,
.mobility-table th {
    background: #007bff;
    color: white;
    padding: 1rem;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
}

.ballistics-table th:first-child,
.mobility-table th:first-child {
    width: 40%;
    text-align: center;
}

.ballistics-table th:nth-child(2),
.mobility-table th:nth-child(2) {
    width: 20%;
}

.ballistics-table th:nth-child(3),
.mobility-table th:nth-child(3) {
    width: 20%;
}

.ballistics-table th:nth-child(4),
.mobility-table th:nth-child(4) {
    width: 20%;
}

.ballistics-table td,
.mobility-table td {
    padding: 0.8rem;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    color: #666;
}

.ballistics-table td:first-child,
.mobility-table td:first-child {
    text-align: center;
    font-weight: 500;
    color: #333;
}

.ballistics-table tr:nth-child(even),
.mobility-table tr:nth-child(even) {
    background: #f8f9fa;
}

.ballistics-table tr:hover,
.mobility-table tr:hover {
    background: #e3f2fd;
}

/* Table download button styles */
.table-download-btn {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem 0;
}

.table-download-btn .cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.table-download-btn .cta-button.secondary {
    background: #fab507;
    color: black;
    border-color: #fab507;
}

.table-download-btn .cta-button.secondary:hover {
    background: #e0a800;
    border-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(250, 181, 7, 0.3);
}

/* CAPTCHA Styles */
.captcha-container {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.captcha-container label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.captcha-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.captcha-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.captcha-question span {
    flex: 1;
}

.refresh-captcha {
    background: #fab507;
    border: none;
    color: black;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.refresh-captcha:hover {
    background: #e0a800;
    transform: rotate(180deg);
}

.captcha-container input[type="text"] {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.captcha-container input[type="text"]:focus {
    outline: none;
    border-color: #fab507;
    box-shadow: 0 0 0 2px rgba(250, 181, 7, 0.2);
}

.captcha-container input[type="hidden"] {
    display: none;
}

/* Responsive Design for Runflats STD Page */
@media (max-width: 768px) {
    .std_rf-banner .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .std_rf-banner .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .std_rf-banner .hero-content p {
        font-size: 1rem;
    }
    
    .hd_rf-banner .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hd_rf-banner .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hd_rf-banner .hero-content p {
        font-size: 1rem;
    }
    
    .hero-floating-image {
        display: none;
    }
    
    .showcase-intro {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .showcase-item img {
        height: 180px;
    }
    
    .showcase-item h3 {
        font-size: 1rem;
    }
    
    .benefits-content .intro-text {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .benefits-content h2,
    .performance-content h2,
    .designed-content h2,
    .ballistics-section h2 {
        font-size: 2rem;
    }
    
    .benefit-header {
        width: 100px;
        height: 100px;
    }
    
    .benefit-header i {
        font-size: 2rem;
    }
    
    .benefit-header h3 {
        font-size: 0.9rem;
    }
    
    .performance-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .specs-tables {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ballistics-table,
    .mobility-table {
        font-size: 0.8rem;
    }
    
    .ballistics-table th,
    .mobility-table th,
    .ballistics-table td,
    .mobility-table td {
        padding: 0.6rem 0.4rem;
    }
    
    .ballistics-table th:first-child,
    .mobility-table th:first-child {
        width: 40%;
    }
    
    .ballistics-table th:nth-child(2),
    .mobility-table th:nth-child(2) {
        width: 20%;
    }
    
    .ballistics-table th:nth-child(3),
    .mobility-table th:nth-child(3) {
        width: 20%;
    }
    
    .ballistics-table th:nth-child(4),
    .mobility-table th:nth-child(4) {
        width: 20%;
    }
    
    .ballistics-table td:first-child,
    .mobility-table td:first-child {
        text-align: center;
    }
    
    .table-download-btn .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .captcha-container {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .captcha-question {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .captcha-container input[type="text"] {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .images-showcase {
        padding: 3rem 0;
    }
    
    .showcase-intro {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .showcase-item {
        padding: 1.5rem;
    }
    
    .showcase-item img {
        height: 150px;
    }
    
    .showcase-item h3 {
        font-size: 0.9rem;
    }
    
    .benefits-section,
    .performance-section,
    .designed-section,
    .ballistics-section {
        padding: 3rem 0;
    }
    
    .benefit-header {
        width: 80px;
        height: 80px;
    }
    
    .benefit-header i {
        font-size: 1.5rem;
    }
    
    .benefit-header h3 {
        font-size: 0.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .designed-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .ballistics-table,
    .mobility-table {
        font-size: 0.7rem;
    }
    
    .ballistics-table th,
    .mobility-table th,
    .ballistics-table td,
    .mobility-table td {
        padding: 0.4rem 0.2rem;
    }
}

/* Runflats STD CTA section with custom theme */
.runflats-main .cta-section {
    background: #232c5a;
}

/* Runflats HD Page Specific Styles */
.runflats-hero .hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 1px;
}

.runflats-hero .hero-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #dc3545;
}

.intro-section {
    padding: 3rem 0;
    background: #f8f9fa;
    text-align: center;
}

.intro-content p {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto;
    color: #333;
    line-height: 1.8;
    font-weight: 500;
}

/* HD Specific benefit icons */
.benefit-item .fa-flag {
    color: #dc3545;
}

.benefit-item .fa-mountain {
    color: #28a745;
}

.benefit-item .fa-shield-virus {
    color: #ffc107;
}

.benefit-item .fa-user-shield {
    color: #17a2b8;
}

/* HD Performance section styling */
.performance-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* HD Ballistics section with military theme */
.ballistics-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.ballistics-section h2 {
    color: #dc3545;
    position: relative;
}

.ballistics-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #dc3545;
}

/* HD CTA section with military theme */
.cta-section {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

/* Responsive adjustments for HD page */
@media (max-width: 768px) {
    .runflats-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .runflats-hero .hero-content h2 {
        font-size: 1.6rem;
    }
    
    .intro-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .std_rf-banner .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .std_rf-banner .hero-content h2 {
        font-size: 1.4rem;
    }
    
    .hd_rf-banner .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hd_rf-banner .hero-content h2 {
        font-size: 1.4rem;
    }
    
    .intro-content p {
        font-size: 1rem;
    }
    
    .benefits-content .intro-text {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-floating-image {
        display: none;
    }
}

/* Assemblies Page Specific Styles */
.assemblies-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.assemblies-hero .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 2px;
}

.assemblies-hero .hero-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #28a745;
}

.assemblies-hero .hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.assemblies-main {
    background: white;
}

/* Assemblies specific benefit icons */
.benefit-item .fa-cogs {
    color: #28a745;
}

.benefit-item .fa-rocket {
    color: #dc3545;
}

.benefit-item .fa-shield-alt {
    color: #007bff;
}

.benefit-item .fa-tools {
    color: #ffc107;
}

/* Assemblies specific feature icons */
.feature-item .fa-wrench {
    color: #28a745;
}

.feature-item .fa-certificate {
    color: #dc3545;
}

.feature-item .fa-sync-alt {
    color: #17a2b8;
}

/* Assemblies Performance section styling */
.performance-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Assemblies Ballistics section with assembly theme */
.ballistics-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.ballistics-section h2 {
    color: #28a745;
    position: relative;
}

.ballistics-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #28a745;
}

/* Assemblies CTA section with assembly theme */
.cta-section {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
}

/* Responsive adjustments for Assemblies page */
@media (max-width: 768px) {
    .assemblies-hero .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .assemblies-hero .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .assemblies-hero .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .assemblies-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .assemblies-hero .hero-content h2 {
        font-size: 1.6rem;
    }
    
    .assemblies-hero .hero-content p {
        font-size: 0.9rem;
    }
}

/* Our Company Page Styles */
.our-company-hero {
    background: url('images/bg3-us.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.our-company-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.our-company-hero .hero-content {
    position: relative;
    z-index: 2;
}

.our-company-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.our-company-hero .hero-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #17a2b8;
}

.our-company-hero .hero-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.our-company-main {
    background: white;
}

/* Our Company CTA Section */
.our-company-main .cta-section {
    background: #18428f !important;
}

.leadership-section,
.manufacturing-section {
    padding: 5rem 0;
}

.leadership-grid,
.manufacturing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.leadership-content h2,
.manufacturing-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

.leadership-content p,
.manufacturing-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.leadership-image img,
.manufacturing-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.global-section {
    padding: 5rem 0;
    background: #f8f9fa;
    text-align: center;
}

.global-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #333;
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.certifications-section {
    padding: 5rem 0;
    background: white;
}

.certifications-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.certifications-content > p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    line-height: 1.8;
    text-align: center;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.certification-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.certification-item i {
    font-size: 3rem;
    color: #17a2b8;
    margin-bottom: 1.5rem;
}

.certification-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.certification-item p {
    color: #666;
    line-height: 1.6;
}

.innovation-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.innovation-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.innovation-content > p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    line-height: 1.8;
    text-align: center;
}

.innovation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.innovation-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.innovation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.innovation-item i {
    font-size: 2rem;
    color: #17a2b8;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.innovation-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.innovation-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Responsive Design for Our Company Page */
@media (max-width: 768px) {
    .our-company-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .our-company-hero .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .our-company-hero .hero-content p {
        font-size: 1.1rem;
    }
    
    .leadership-content h2,
    .manufacturing-content h2,
    .global-section h2,
    .certifications-content h2,
    .innovation-content h2 {
        font-size: 2rem;
    }
    
    .leadership-grid,
    .manufacturing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .global-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .innovation-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .innovation-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .our-company-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .leadership-section,
    .manufacturing-section,
    .global-section,
    .certifications-section,
    .innovation-section {
        padding: 3rem 0;
    }
    
    .global-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Our Group Page Styles */
.our-group-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.our-group-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.our-group-hero .hero-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #6f42c1;
}

.our-group-hero .hero-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.our-group-main {
    background: white;
}

.partnership-section,
.manufacturing-section {
    padding: 5rem 0;
}

.partnership-grid,
.manufacturing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.partnership-content h2,
.manufacturing-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

.partnership-content p,
.manufacturing-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.partnership-image img,
.manufacturing-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.market-section {
    padding: 5rem 0;
    background: #f8f9fa;
    text-align: center;
}

.market-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #333;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.market-stats .stat-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.market-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.market-stats .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #6f42c1;
    margin-bottom: 0.5rem;
}

.market-stats .stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.solutions-section {
    padding: 5rem 0;
    background: white;
}

.solutions-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.solutions-content > p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    line-height: 1.8;
    text-align: center;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.solution-item i {
    font-size: 3rem;
    color: #6f42c1;
    margin-bottom: 1.5rem;
}

.solution-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.solution-item p {
    color: #666;
    line-height: 1.6;
}

/* Group specific innovation section */
.our-group-main .innovation-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.our-group-main .innovation-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.our-group-main .innovation-content > p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    line-height: 1.8;
    text-align: center;
}

.our-group-main .innovation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.our-group-main .innovation-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-group-main .innovation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.our-group-main .innovation-item i {
    font-size: 2rem;
    color: #6f42c1;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.our-group-main .innovation-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.our-group-main .innovation-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Group CTA section with purple theme */
.our-group-main .cta-section {
    background: linear-gradient(135deg, #6f42c1 0%, #5a2d91 100%);
}

/* Responsive Design for Our Group Page */
@media (max-width: 768px) {
    .our-group-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .our-group-hero .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .our-group-hero .hero-content p {
        font-size: 1.1rem;
    }
    
    .partnership-content h2,
    .manufacturing-content h2,
    .market-section h2,
    .solutions-content h2,
    .our-group-main .innovation-content h2 {
        font-size: 2rem;
    }
    
    .partnership-grid,
    .manufacturing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .market-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .our-group-main .innovation-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .our-group-main .innovation-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .our-group-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .partnership-section,
    .manufacturing-section,
    .market-section,
    .solutions-section,
    .our-group-main .innovation-section {
        padding: 3rem 0;
    }
    
    .market-stats {
        grid-template-columns: 1fr;
    }
    
    .market-stats .stat-number {
        font-size: 2.5rem;
    }
}

/* KEVLAR Products Page Styles */
.kevlar-hero {
    background: url('images/caronilabg1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.kevlar-logo {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
    text-align: center;
}

.kevlar-logo img {
    max-width: 250px;
    height: auto;
    opacity: 1;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.kevlar-hero .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 2px;
}

.kevlar-hero .hero-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #fab507;
}

.kevlar-hero .hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.kevlar-main {
    background: white;
}

/* CarolinaPM Section Styles */
.carolinapm-section {
    padding: 4rem 0;
    background: url('images/kevlar_weaving.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.carolinapm-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

.carolinapm-content {
    position: relative;
    z-index: 2;
}

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

.carolinapm-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.carolinapm-paragraph {
    text-align: justify;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
    color: #555;
}

.carolinapm-logos {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.carolinapm-logo,
.kevlar-logo-section {
    text-align: center;
}

.carolinapm-logo img,
.kevlar-logo-section img {
    max-width: 180px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.carolinapm-logo img:hover,
.kevlar-logo-section img:hover {
    opacity: 1;
}

.armortec-section,
.fragment-section {
    padding: 5rem 0;
}

.armortec-grid,
.fragment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.armortec-content h2,
.fragment-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

.armortec-content p,
.fragment-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.armortec-image img,
.fragment-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.specifications-section,
.fragment-specs-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.specifications-section h2,
.fragment-specs-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #333;
    text-align: center;
}

.specs-tables {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.specs-table h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

.ballistics-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ballistics-table th {
    background: #fab507;
    color: black;
    padding: 1rem;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
}

.ballistics-table td {
    padding: 0.8rem;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    color: #666;
}

.ballistics-table tr:nth-child(even) {
    background: #f8f9fa;
}

.ballistics-table tr:hover {
    background: #fff3e0;
}

.applications-section {
    padding: 5rem 0;
    background: white;
}

.applications-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.applications-content > p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    line-height: 1.8;
    text-align: center;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.application-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.application-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.application-item i {
    font-size: 3rem;
    color: #fab507;
    margin-bottom: 1.5rem;
}

.application-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.application-item p {
    color: #666;
    line-height: 1.6;
}

/* KEVLAR CTA section with orange theme */
.kevlar-main .cta-section {
    background: #fab507;
    color: black;
}

/* DOOR SHIELD Page Styles */
.doorshield-hero {
    background: url('images/bg1-door.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.doorshield-logo {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
    text-align: center;
}

.doorshield-logo img {
    max-width: 250px;
    height: auto;
    opacity: 1;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.doorshield-hero .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 2px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.doorshield-hero .hero-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #232c5a;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.doorshield-hero .hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.doorshield-logo-floating {
    position: absolute;
    left: 100px;
    bottom: 150px;
    z-index: 2;
}

.doorshield-logo-floating img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.doorshield-hero .hero-floating-image {
    position: absolute;
    left: 100px;
    bottom: 25px;
    z-index: 1;
}

.doorshield-hero .hero-floating-image img {
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.doorshield-hero .hero-floating-image img:hover {
    transform: scale(1.05);
}

.doorshield-main {
    background: white;
}

.doorshield-main .benefit-header {
    background: #f9b000;
}

.doorshield-main .benefit-header i {
    color: white !important;
}

.doorshield-main .benefit-item:hover .benefit-header {
    background: #e6a000;
    transform: scale(1.05);
}

.why-choose-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(248, 249, 250, 0.6), rgba(248, 249, 250, 0.6)), url('images/bg1-door2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.why-choose-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: #fab507;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature-text p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.why-choose-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* DOOR SHIELD CTA section with yellow theme */
.doorshield-main .cta-section {
    background: #f9b000;
    color: black;
}

.doorshield-main .cta-button {
    background: black;
    color: white;
    border: 2px solid black;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.doorshield-main .cta-button:hover {
    background: white;
    color: black;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.doorshield-main .cta-button.secondary {
    background: black;
    color: white;
    border: 2px solid black;
}

.doorshield-main .cta-button.secondary:hover {
    background: white;
    color: black;
}

/* DOOR SHIELD Application icons */
.doorshield-main .application-item i {
    font-size: 3rem;
    color: #fab507;
    margin-bottom: 1.5rem;
}

/* Responsive Design for DOOR SHIELD Page */
@media (max-width: 768px) {
    .doorshield-hero .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .doorshield-hero .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .doorshield-hero .hero-content p {
        font-size: 1rem;
    }
    
    .doorshield-logo-floating {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .doorshield-logo-floating img {
        display: none !important;
    }
    
    .doorshield-hero .hero-floating-image {
        display: none;
    }
    
    .why-choose-content h2 {
        font-size: 2rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-choose-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .doorshield-main .applications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .doorshield-logo-floating {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .doorshield-logo-floating img {
        display: none !important;
    }
}

.kevlar-main .cta-button {
    background: black;
    color: white;
    border: 2px solid black;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.kevlar-main .cta-button:hover {
    background: white;
    color: black;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.kevlar-main .cta-button.secondary {
    background: black;
    color: white;
    border: 2px solid black;
}

.kevlar-main .cta-button.secondary:hover {
    background: white;
    color: black;
}

/* Responsive Design for KEVLAR Page */
@media (max-width: 768px) {
    .kevlar-hero .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .kevlar-hero .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .kevlar-hero .hero-content p {
        font-size: 1rem;
    }
    
    .kevlar-hero .hero-floating-image {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .kevlar-logo {
        top: 120px;
    }
    
    .kevlar-logo img {
        max-width: 150px;
    }
    
    .carolinapm-content h2 {
        font-size: 2rem;
    }
    
    .carolinapm-paragraph {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .carolinapm-logos {
        gap: 2rem;
    }
    
    .carolinapm-logo img,
    .kevlar-logo-section img {
        max-width: 140px;
    }
    
    .armortec-content h2,
    .fragment-content h2,
    .specifications-section h2,
    .fragment-specs-section h2,
    .applications-content h2 {
        font-size: 2rem;
    }
    
    .armortec-grid,
    .fragment-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ballistics-table {
        font-size: 0.8rem;
    }
    
    .ballistics-table th,
    .ballistics-table td {
        padding: 0.6rem 0.4rem;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .kevlar-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .kevlar-hero .hero-floating-image {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .kevlar-logo {
        top: 120px;
    }
    
    .kevlar-logo img {
        max-width: 120px;
    }
    
    .carolinapm-content h2 {
        font-size: 1.8rem;
    }
    
    .carolinapm-paragraph {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .carolinapm-logos {
        gap: 1.5rem;
        flex-direction: column;
    }
    
    .carolinapm-logo img,
    .kevlar-logo-section img {
        max-width: 120px;
    }
    
    .armortec-section,
    .fragment-section,
    .specifications-section,
    .fragment-specs-section,
    .applications-section {
        padding: 3rem 0;
    }
    
    .ballistics-table {
        font-size: 0.7rem;
    }
    
    .ballistics-table th,
    .ballistics-table td {
        padding: 0.4rem 0.2rem;
    }
}

/* Body Armor Page Styles */
.bodyarmor-hero {
    background: url('images/bg1-body.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.bodyarmor-hero .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 2px;
}

.bodyarmor-hero .hero-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #abceef;
}

.bodyarmor-hero .hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.bodyarmor-logo-floating {
    position: absolute;
    left: 100px;
    bottom: 150px;
    z-index: 2;
}

.bodyarmor-logo-floating img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.bodyarmor-hero .hero-floating-image {
    position: absolute;
    left: 100px;
    bottom: 25px;
    z-index: 1;
}

.bodyarmor-hero .hero-floating-image img {
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.bodyarmor-hero .hero-floating-image img:hover {
    transform: scale(1.05);
}

.bodyarmor-main {
    background: white;
}

.productlines-section {
    padding: 5rem 0;
}

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

.productlines-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

.productlines-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.productlines-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.categories-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.categories-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #333;
    text-align: center;
}

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

.category-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-item i {
    font-size: 3rem;
    color: #20c997;
    margin-bottom: 1.5rem;
}

.category-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.category-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.category-item p {
    color: #666;
    line-height: 1.6;
}

.certifications-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(248, 249, 250, 0.6), rgba(248, 249, 250, 0.6)), url('images/bg2-body.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.certifications-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: black;
    text-align: center;
}

.certifications-content > p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    line-height: 1.8;
    text-align: center;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.certification-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.certification-item i {
    font-size: 3rem;
    color: #20c997;
    margin-bottom: 1.5rem;
}

.certification-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.certification-item .fa-handshake {
    color: black;
}

/* Body Armor specific certification text colors */
.bodyarmor-main .certifications-content h2 {
    color: black;
}

.bodyarmor-main .certifications-content > p {
    color: black;
}

.bodyarmor-main .certification-item h3 {
    color: black;
}

.bodyarmor-main .certification-item p {
    color: black;
}

.certification-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.certification-item p {
    color: #666;
    line-height: 1.6;
}

.global-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.global-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #333;
    text-align: center;
}

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

.location-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.location-item i {
    font-size: 2.5rem;
    color: #20c997;
    margin-bottom: 1rem;
}

.location-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.location-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.mission-section {
    padding: 5rem 0;
    background: white;
}

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

.mission-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

.mission-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Body Armor CTA section with blue theme */
.bodyarmor-main .cta-section {
    background: #abceef;
}

/* Responsive Design for Body Armor Page */
@media (max-width: 768px) {
    .bodyarmor-hero .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .bodyarmor-hero .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .bodyarmor-hero .hero-content p {
        font-size: 1rem;
    }
    
    .bodyarmor-logo-floating {
        left: 20px;
        bottom: 120px;
    }
    
    .bodyarmor-logo-floating img {
        max-width: 200px;
    }
    
    .bodyarmor-hero .hero-floating-image {
        display: none;
    }
    
    .productlines-content h2,
    .categories-section h2,
    .certifications-content h2,
    .global-section h2,
    .mission-content h2 {
        font-size: 2rem;
    }
    
    .productlines-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .global-locations {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .bodyarmor-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .productlines-section,
    .categories-section,
    .certifications-section,
    .global-section,
    .mission-section {
        padding: 3rem 0;
    }
}

/* Email Contact Page Styles */
.email-hero {
    background: url('images/bg1-cntct.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.email-hero .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.email-hero .hero-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.email-hero .hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.email-main {
    background: white;
}

.contact-form-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.form-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
    background-color: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #6c757d;
    box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.1);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
    appearance: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    color: #666;
    transition: color 0.3s ease;
}

.checkbox-label:hover {
    color: #333;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    margin-right: 0.75rem;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #6c757d;
    border-color: #6c757d;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-actions {
    text-align: center;
    margin-top: 1rem;
}

.submit-btn {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(108, 117, 125, 0.3);
}

.contact-info-section {
    padding: 5rem 0;
    background: white;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-item i {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.contact-info-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.contact-info-item p {
    color: #666;
    line-height: 1.6;
}

.contact-info-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #495057;
}

/* Responsive Design for Email Page */
@media (max-width: 768px) {
    .email-hero .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .email-hero .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .email-hero .hero-content p {
        font-size: 1rem;
    }
    
    .form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .email-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-form-section {
        padding: 3rem 0;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .contact-info-section {
        padding: 3rem 0;
    }
}

/* Products Popup Styles - Floating Window */
.products-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.products-popup.active {
    display: block;
    opacity: 1;
}

.popup-overlay {
    display: none;
}

.popup-content {
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    max-width: 400px;
    width: 85%;
    max-height: 60vh;
    overflow-y: auto;
    animation: popupFloatIn 0.3s ease-out;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

@keyframes popupFloatIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(-20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0) scale(1);
    }
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 0.75rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.popup-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.popup-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: #f8f9fa;
    color: #333;
}

.popup-body {
    padding: 1.5rem;
}

.popup-section {
    margin-bottom: 1.5rem;
}

.popup-section:last-child {
    margin-bottom: 0;
}

.popup-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #18428F;
    margin-bottom: 0.75rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid #18428F;
}

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

.popup-section li {
    margin-bottom: 0.5rem;
}

.popup-section li:last-child {
    margin-bottom: 0;
}

.popup-section a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid transparent;
    font-size: 0.9rem;
}

.popup-section a:hover {
    background: #f8f9fa;
    color: #18428F;
    border-color: #e9ecef;
    transform: translateX(3px);
}

/* Responsive Design for Popup */
@media (max-width: 768px) {
    .popup-content {
        width: 90%;
        max-width: 350px;
        max-height: 70vh;
    }
    
    .popup-header {
        padding: 1.25rem 1.25rem 0.5rem 1.25rem;
    }
    
    .popup-header h3 {
        font-size: 1.3rem;
    }
    
    .popup-body {
        padding: 1.25rem;
    }
    
    .popup-section h4 {
        font-size: 1rem;
    }
    
    .popup-section a {
        padding: 0.5rem 0.7rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .popup-content {
        width: 95%;
        max-width: 320px;
        max-height: 75vh;
    }
    
    .popup-header {
        padding: 1rem 1rem 0.5rem 1rem;
    }
    
    .popup-header h3 {
        font-size: 1.2rem;
    }
    
    .popup-body {
        padding: 1rem;
    }
    
    .popup-section {
        margin-bottom: 1.25rem;
    }
    
    .popup-section h4 {
        font-size: 0.95rem;
    }
    
    .popup-section a {
        padding: 0.45rem 0.6rem;
        font-size: 0.8rem;
    }
}

/* Clickable Title Styles */
.clickable-title {
    cursor: pointer;
    transition: color 0.3s ease;
}

.clickable-title:hover {
    color: #007bff;
}

/* Download Popup Styles */
.download-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.download-popup.active {
    display: block;
    opacity: 1;
}

.download-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.download-form label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.download-form input {
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.download-form input:focus {
    outline: none;
    border-color: #007bff;
}

.download-form input:required:invalid {
    border-color: #dc3545;
}

.download-form input:required:valid {
    border-color: #28a745;
}

/* Specs Table Styles for Form */
.specs-table-section {
    margin-bottom: 2rem;
}

.specs-table-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    border-bottom: 2px solid #fab507;
    padding-bottom: 0.5rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.specs-table th {
    background: #fab507;
    color: black;
    padding: 0.8rem;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
}

.specs-table th:first-child {
    width: 60px;
}

.specs-table td {
    padding: 0.8rem;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    color: #666;
}

.specs-table td:first-child {
    text-align: center;
}

.specs-table td:not(:first-child) {
    text-align: center;
}

.specs-table tr:nth-child(even) {
    background: #f8f9fa;
}

.specs-table tr:hover {
    background: #fff3e0;
}

.specs-table input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.select-all-section {
    margin-top: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #fab507;
}

.select-all-section .checkbox-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

/* Responsive adjustments for specs tables */
@media (max-width: 768px) {
    .specs-table {
        font-size: 0.8rem;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 0.6rem 0.4rem;
    }
    
    .specs-table th:first-child,
    .specs-table td:first-child {
        width: 50px;
    }
    
    .specs-table-section h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .specs-table {
        font-size: 0.7rem;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 0.4rem 0.2rem;
    }
    
    .specs-table th:first-child,
    .specs-table td:first-child {
        width: 40%;
        text-align: center;
    }
    
    .specs-table th:nth-child(2),
    .specs-table td:nth-child(2) {
        width: 20%;
    }
    
    .specs-table th:nth-child(3),
    .specs-table td:nth-child(3) {
        width: 20%;
    }
    
    .specs-table th:nth-child(4),
    .specs-table td:nth-child(4) {
        width: 20%;
    }
    
    .specs-table input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
    
    .table-download-btn .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }
    
    .captcha-container {
        padding: 0.8rem;
        margin: 0.8rem 0;
    }
    
    .captcha-question {
        padding: 0.5rem 0.6rem;
        font-size: 0.85rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .captcha-container input[type="text"] {
        padding: 0.5rem 0.6rem;
        font-size: 0.85rem;
    }
    
    .refresh-captcha {
        padding: 0.3rem 0.5rem;
        font-size: 0.8rem;
    }
} 