    /* Reset and base styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: #333;
    }
    
    /* Navigation styles */
    .main-nav {
        background-color: #ffffff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        padding: 0.5rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .brand-logo {
        height: 90px;
        padding: 5px 0;
    }
    
    .main-menu {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .menu-item {
        color: #333;
        text-decoration: none;
        padding: 1.5rem 1rem;
        display: block;
        transition: color 0.3s;
        font-weight: 500;
    }
    
    .menu-item:hover, .menu-item.active {
        color: #5dc6d2;
    }
    
    /* Dropdown menu styles */
    .dropdown-wrapper {
        position: relative;
    }
    
    .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        /*left: 50%;*/
        transform: translateX(-50%);
        background-color: #ffffff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        width: 60vw;
        max-width: 400px;
        border-radius: 8px;
    }
    
    .products-grid {
       /* display: grid;*/
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .product-card {
        padding: 0.7rem;
        border-bottom: 1px dashed #ccc;
        border-radius: 8px;
        transition: all 0.3s ease;
        text-align: center;
    }
    
    .product-card:hover {
        background-color: #5dc6d2;
        transform: translateY(-5px);
    }
    
    .product-card img {
        width: 100%;
        border-radius: 6px;
        margin-bottom: 1rem;
    }
    
    .product-card h3 {
        margin-bottom: 0.5rem;
        color: #333;
        font-size: 1.1rem;
    }
    
    .product-card p {
        color: #666;
        font-size: 0.9rem;
    }
    
    /* Mobile menu trigger */
    .mobile-trigger {
        display: none;
        flex-direction: column;
        cursor: pointer;
    }
    
    .mobile-trigger span {
        width: 25px;
        height: 3px;
        background-color: #333;
        margin: 2px 0;
        transition: 0.3s;
    }
    
    /* Products Page Styles */
    .products-page {
        padding-top: 80px;
        background-color: #f8f9fa;
        min-height: 100vh;
    }
    
    .page-header {
        text-align: center;
        padding: 4rem 2rem;
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/banner-torgem.jpg');
        background-size: cover;
        background-position: center;
        color: white;
    }
    
    .page-header h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .page-header p {
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .product-categories {
        max-width: 1200px;
        margin: 0 auto;
        padding: 4rem 2rem;
    }
    
    .category-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .category-card:nth-child(even) {
        direction: rtl;
    }
    
    .category-card:nth-child(even) .category-content {
        direction: ltr;
    }
    
    .category-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .category-content {
        padding: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .category-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #5dc6d2;
    }
    
    .category-content p {
        margin-bottom: 1.5rem;
        color: #666;
    }
    
    .product-list {
        list-style: none;
        margin-bottom: 1.5rem;
    }
    
    .product-list li {
        padding: 0.5rem 0;
        color: #333;
        position: relative;
        padding-left: 1.5rem;
    }
    
    .product-list li::before {
        content: '•';
        color: #5dc6d2;
        position: absolute;
        left: 0;
        font-size: 1.2rem;
    }
    
    .category-btn {
        display: inline-block;
        padding: 0.8rem 1.5rem;
        background-color: #5dc6d2;
        color: white;
        text-decoration: none;
        border-radius: 30px;
        transition: background-color 0.3s;
        align-self: flex-start;
    }
    
    .category-btn:hover {
        background-color: #0052a3;
    }
    
    /* Hero Section */
    .hero-section {
        height: 100vh;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/banner-torgem.jpg');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        display: inline-block;
        padding: 1rem 2rem;
        background-color: #5dc6d2;
        color: white;
        text-decoration: none;
        border-radius: 30px;
        transition: background-color 0.3s;
    }
    
    .cta-button:hover {
        background-color: #0052a3;
    }
    
    /* Featured Products Section */
    .featured-products {
        padding: 5rem 2rem;
        background-color: #f8f9fa;
    }
    
    .featured-products h2 {
        text-align: center;
        margin-bottom: 3rem;
        font-size: 2.5rem;
    }
    
    .products-showcase {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .product-highlight {
        text-align: center;
        padding: 1rem;
        background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .product-highlight img {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 1rem;
    }
    
    .product-highlight h3 {
        margin: 1rem 0;
    }
    
    .learn-more {
        display: inline-block;
        padding: 0.5rem 1rem;
        background-color: #5dc6d2;
        color: white;
        text-decoration: none;
        border-radius: 20px;
        margin-top: 1rem;
        transition: background-color 0.3s;
    }
    
    .learn-more:hover {
        background-color: #0052a3;
    }
    
    /* Company Stats */
    .company-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        padding: 5rem 2rem;
        background-color: #ffffff;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-item i {
        font-size: 2.5rem;
        color: #5dc6d2;
        margin-bottom: 1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    /* Footer styles */
    .page-footer {
        background-color: #1a1a1a;
        color: #fff;
        padding: 4rem 0 0;
    }
    
    .footer-sections {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
    }
    
    .contact-section h3,
    .quick-links h3,
    .social-section h3 {
        margin-bottom: 1.5rem;
        font-size: 1.2rem;
    }
    
    .contact-section p {
        margin-bottom: 1rem;
    }
    
    .contact-section i {
        margin-right: 0.5rem;
        color: #5dc6d2;
    }
    
    .quick-links ul {
        list-style: none;
    }
    
    .quick-links a {
        color: #fff;
        text-decoration: none;
        display: block;
        padding: 0.5rem 0;
        transition: color 0.3s;
    }
    
    .quick-links a:hover {
        color: #5dc6d2;
    }
    
    .social-icons {
        display: flex;
        gap: 1rem;
    }
    
    .social-icons a {
        color: #fff;
        font-size: 1.5rem;
        transition: color 0.3s;
    }
    
    .social-icons a:hover {
        color: #5dc6d2;
    }
    
    .footer-bottom {
        text-align: center;
        padding: 2rem;
        margin-top: 3rem;
        border-top: 1px solid #333;
    }
    
    /* Responsive styles */
    @media (max-width: 768px) {
        .mobile-trigger {
            display: flex;
        }
    
        .main-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: #ffffff;
            flex-direction: column;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
    
        .main-menu.active {
            display: flex;
        }
    
        .menu-item {
            padding: 1rem;
        }
    
        .dropdown-content {
            position: static;
            transform: none;
            width: 100%;
            box-shadow: none;
            padding: 1rem;
        }
    
        .products-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
        }
    
        .product-card {
            padding: 0.5rem;
        }
    
        .category-card {
            grid-template-columns: 1fr;
        }
    
        .category-card:nth-child(even) {
            direction: ltr;
        }
    
        .category-content {
            padding: 1.5rem;
        }
    
        .page-header h1 {
            font-size: 2rem;
        }
    
        .page-header p {
            font-size: 1rem;
        }
    
        .hero-content h1 {
            font-size: 2.5rem;
        }
    
        .hero-content p {
            font-size: 1.2rem;
        }
    
        .company-stats {
            grid-template-columns: 1fr 1fr;
        }
    }
    
    @media (max-width: 480px) {
        .company-stats {
            grid-template-columns: 1fr;
        }
    
        .hero-content h1 {
            font-size: 2rem;
        }
    
        .featured-products h2 {
            font-size: 2rem;
        }
    
        .category-content h2 {
            font-size: 1.5rem;
        }
    }


/* Achievement Grid */
.achievement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.achievement-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.achievement-item:hover {
    transform: translateY(-5px);
}

.achievement-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.achievement-item .label {
    color: var(--secondary-color);
    font-weight: 500;
}

/* Mission & Vision Cards */
.mission-card, .vision-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(64, 224, 208, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.mission-list, .vision-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.mission-list li, .vision-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.mission-list i, .vision-list i {
    color: var(--primary-color);
    margin-right: 0.75rem;
}

/* Team Members */
.team-member {
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-member h4 {
    margin: 1rem 0 0.5rem;
    color: var(--secondary-color);
}

.team-member .position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.team-member .bio {
    font-size: 0.9rem;
    color: var(--dark-color);
}

/* Values */
.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(64, 224, 208, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
}

/* Global Presence */
.presence-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-item .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item .label {
    color: var(--secondary-color);
    font-weight: 500;
}
