/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Sponsored Banner */
.sponsored-banner {
    background-color: #fff;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
}

.sponsored-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sponsored-label {
    background-color: #f0f0f0;
    padding: 2px 8px;
    border-radius: 3px;
    margin-right: 10px;
    font-size: 12px;
}

.sponsored-text a {
    color: #0066cc;
}

.social-language {
    display: flex;
    align-items: center;
    gap: 10px;
}

.linkedin {
    color: #0077b5;
    font-size: 18px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.flag-icon {
    width: 20px;
    height: 15px;
}

/* Header Navigation */
.main-header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    font-weight: bold;
}

.logo-ff {
    font-size: 24px;
    margin-right: 5px;
}

.logo-text {
    font-size: 18px;
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: #333;
    font-weight: 500;
}

.main-nav a:hover {
    color: #8B4513;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.search-btn, .signin-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;

}

.signin-btn {
    color: #333;
    
}

/* Hero Section */
.hero-section {
    background-color: #f0f0f0;
    background-image: url('images/network-bg.png');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    position: relative;
}

.hero-content {
    max-width: 800px;
}

h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #222;
}

.highlight {
    color: #8B4513;
}

.subtitle {
    font-size: 18px;
    color: #8B4513;
    margin-bottom: 30px;
}

.category-links {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.category-links a {
    color: #333;
    padding-bottom: 5px;
    position: relative;
    font-weight: 500;
}

.category-links a.active::after,
.category-links a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #8B4513;
}

.category-links a.active {
    color: #8B4513;
}

.category-links a.inactive {
    color: #8B4513;
}

.content-wrapper {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 30px;
    display: flex;
    gap: 40px;
}

.suppliers-section {
    flex: 1;
    padding-right: 40px;
}

h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #222;
}

.section-subtitle {
    color: #666;
    margin-bottom: 25px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: #8B4513;
    font-size: 20px;
}

.source-now-btn {
    display: inline-block;
    padding: 10px 30px;
    background-color: #fff;
    color: #8B4513;
    border: 1px solid #8B4513;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
}

.source-now-btn:hover {
    background-color: #8B4513;
    color: #fff;
}

.categories-section {
    flex: 1;
}

h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #222;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.category {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.category-icon {
    width: 60px;
    height: 60px;
    background-color: #f9f9f9;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #555;
}

.category span {
    font-size: 13px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .suppliers-section {
        padding-right: 0;
        padding-bottom: 30px;
        border-bottom: 1px solid #eee;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .header-actions {
        margin-top: 10px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    .category-links {
        flex-wrap: wrap;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .sponsored-banner .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-language {
        width: 100%;
        justify-content: center;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

.footer {
    background-color: #ffffff;
    color: #333;
    padding: 3rem 2rem;
    border-top: 1px solid #ddd;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
  }
  
  .footer h3, .footer h4 {
    color: #8B4513;
    margin-bottom: 1rem;
  }
  
  .footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer a {
    text-decoration: none;
    color: #333;
  }
  
  .footer a:hover {
    color: #8B4513;
  }
  
  .footer-newsletter form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-newsletter input {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .footer-newsletter button {
    background-color: #8B4513;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .footer-newsletter button:hover {
    background-color: #A0522D;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.85rem;
    color: #777;
  }
  