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

:root {
    --dark-gray: #2c3e50;
    --darker-gray: #1a252f;
    --metal-blue: #2980b9;
    --light-blue: #3498db;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --medium-gray: #95a5a6;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--metal-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--dark-gray);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--metal-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--metal-blue);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--metal-blue);
}

.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    transition: all 0.3s ease;
}

section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--darker-gray) 0%, var(--dark-gray) 50%, #34495e 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/Hengze-Steel-production1.jpg') center/cover;
    opacity: 0.25;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(74, 158, 255, 0.2);
    border: 1px solid rgba(74, 158, 255, 0.4);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4a9eff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-company-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #4a9eff;
    letter-spacing: 0.5px;
}

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

.hero-content p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--metal-blue);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--metal-blue);
    font-size: 1.05rem;
}

.btn:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(41, 128, 185, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-gray);
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.75rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title p {
    color: var(--medium-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-header {
    padding: 10rem 2rem 4rem;
    background: linear-gradient(135deg, var(--darker-gray) 0%, var(--dark-gray) 100%);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.light-section {
    background: var(--light-gray);
}

.white-section {
    background: var(--white);
}

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

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

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

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--metal-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.category-nav {
    position: sticky;
    top: 70px;
    background: var(--white);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.category-nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.category-nav a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: var(--light-gray);
}

.category-nav a:hover,
.category-nav a.active {
    background: var(--metal-blue);
    color: var(--white);
}

.product-category-section {
    min-height: 100vh;
    padding: 4rem 2rem;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.advantage-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.advantage-card p {
    color: var(--medium-gray);
    line-height: 1.8;
}

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

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.product-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    font-weight: 600;
    color: var(--dark-gray);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.product-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-tag {
    background: linear-gradient(135deg, var(--metal-blue), var(--light-blue));
    color: var(--white);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

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

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.intro-text p {
    color: var(--medium-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.intro-image {
    height: 400px;
    background: url('https://placehold.co/800x600/34495e/ffffff?text=Factory:+Manufacturing+Facility') center/cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.cert-badge {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    width: 100%;
}

.cert-badge:hover {
    background: var(--metal-blue);
    color: var(--white);
    transform: scale(1.05);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

.about-section {
    padding: 0.5rem;
}

.about-section h3 {
    font-size: 1.75rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-section h4 {
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin: 2rem 0 1.25rem;
    font-weight: 600;
}

.about-section p {
    color: var(--medium-gray);
    line-height: 2;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

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

.about-section li {
    padding: 1rem 0;
    color: var(--medium-gray);
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.8;
    font-size: 1.025rem;
}

.about-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--metal-blue);
    font-weight: 700;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 3rem 0;
}

.video-placeholder {
    width: 100%;
    height: 500px;
    background: var(--darker-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--white);
    margin: 3rem 0;
}

.product-category {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.category-title {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--metal-blue);
}

.product-detail {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--light-gray);
}

.product-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.product-detail-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.product-detail-image {
    width: 300px;
    height: 200px;
    background: var(--light-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--dark-gray);
    flex-shrink: 0;
}

.product-detail-info {
    flex: 1;
}

.product-detail-info h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.product-detail-info p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.spec-table th,
.spec-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border: 1px solid var(--light-gray);
}

.spec-table th {
    background: var(--light-gray);
    font-weight: 600;
    color: var(--dark-gray);
}

.spec-table td {
    color: var(--medium-gray);
}

.applications-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.app-tag {
    background: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

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

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

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--metal-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.advantage-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.contact-details h4 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.contact-details p,
.contact-details a {
    color: var(--medium-gray);
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--metal-blue);
}

.contact-form {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 12px;
}

.contact-form h3 {
    font-size: 1.75rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    color: var(--dark-gray);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--metal-blue);
}

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

.map-container {
    margin-top: 4rem;
}

.map-placeholder-full {
    width: 100%;
    height: 400px;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--dark-gray);
}

.map-container-small .map-placeholder-full {
    height: 200px;
}

.map-container-small iframe {
    width: 100%;
    display: block;
}

.sample-notice {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--metal-blue), var(--light-blue));
    border-radius: 12px;
    color: var(--white);
}

.sample-notice h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

footer {
    background: var(--darker-gray);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 2;
    display: block;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-company-name {
        font-size: 1.2rem;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1.25rem;
    }

    .hero-cta {
        gap: 0.75rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .intro-grid,
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-header {
        flex-direction: column;
    }

    .product-detail-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 1.5rem;
    }

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

    .section-title h2 {
        font-size: 2rem;
    }

    .product-category {
        padding: 2rem 1.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .about-content {
        gap: 3rem;
    }

    .about-section h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .about-section h4 {
        font-size: 1.15rem;
        margin: 1.5rem 0 1rem;
    }

    .about-section p {
        line-height: 1.9;
        margin-bottom: 1.25rem;
        font-size: 1rem;
    }

    .about-section li {
        padding: 0.875rem 0;
        font-size: 1rem;
    }

    .factory-section {
        margin-top: 3.5rem;
    }

    .factory-section h3 {
        font-size: 1.5rem;
    }
    
    .factory-image {
        height: 280px;
    }
    
    .factory-description {
        font-size: 1rem;
    }
}

/* Product Categories Landing Page */
.product-categories-section {
    padding: 4rem 2rem;
    background: var(--light-gray);
}

.product-category-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    display: flex;
    transition: all 0.3s ease;
}

.product-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-category-card .category-image {
    width: 400px;
    min-height: 350px;
    background: var(--light-gray);
    flex-shrink: 0;
}

.product-category-card .category-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-category-card .category-content h2 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-category-card .category-content p {
    color: var(--medium-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.product-category-card .category-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-product-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--light-gray);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.category-product-item:hover {
    background: rgba(41, 128, 185, 0.1);
}

.category-product-item .product-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--metal-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 8px;
}

.category-product-item .product-icon svg {
    width: 100%;
    height: 100%;
}

.category-product-item strong {
    font-size: 1rem;
    color: var(--dark-gray);
}

.category-product-item p {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin: 0.25rem 0 0 !important;
}

@media (max-width: 992px) {
    .product-category-card {
        flex-direction: column;
    }

    .product-category-card .category-image {
        width: 100%;
        min-height: 250px;
    }

    .product-category-card .category-products {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-categories-section {
        padding: 3rem 1.5rem;
    }

    .product-category-card .category-content {
        padding: 2rem;
    }

    .product-category-card .category-content h2 {
        font-size: 1.5rem;
    }
}

/* Global Market Section */
.global-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: var(--white);
}

.global-section .section-title h2 {
    color: var(--white);
}

.global-section .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.global-map-container {
    margin-top: 3rem;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4a9eff, #7fc4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.region-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.region-tag {
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
}

.region-tag:hover {
    background: rgba(74, 158, 255, 0.3);
    border-color: #4a9eff;
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .global-map-visual {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .global-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .global-section {
        padding: 3rem 1.5rem;
    }

    .global-map-visual {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .region-tags {
        gap: 0.5rem;
    }

    .region-tag {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Factory Section */
.factory-section {
    margin-top: 5rem;
    text-align: center;
}

.factory-section h3 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.factory-image-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.factory-image {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.factory-image:hover {
    transform: scale(1.02);
}

.factory-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.9;
}

@media (max-width: 768px) {
    .factory-section h3 {
        font-size: 1.5rem;
    }
    
    .factory-image {
        height: 280px;
    }
    
    .factory-description {
        font-size: 1rem;
    }
}