* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #5a7ebe;
    --primary-dark: #2e5699;
    --secondary: #d78627;
    --accent: #00a896;
    --dark: #333;
    --light: #f8f9fa;
    --gray: #6c757d;
    --border: #e0e0e0;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, rgb(46, 86, 153), rgba(0, 168, 150, 0.9));
}

body {
    background-color: #f5f5f5;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
}

header .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    height: 68px;
    width: auto;
}

.logo img {
    height: 100%;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
    margin: 0;
    padding: 0;
}

nav>ul>li {
    position: relative;
}

nav>ul>li>a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
    padding: 8px 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

nav>ul>li>a:hover {
    color: var(--secondary);
}

nav>ul>li>a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

nav>ul>li:hover>a i {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    /* min-width: 800px;
    max-width: 90vw; */
    box-shadow: var(--shadow);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--border);
    padding: 0;
}

nav>ul>li:last-child .dropdown {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(10px);
}

.dropdown-content {
    display: flex;
    padding: 28px;
    gap: 12px;
    max-height: 70vh;
    overflow-y: auto;
}

.dropdown-section {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dropdown-section h4 {
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-section ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-section li a {
    color: var(--dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
}

.dropdown-section li a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

nav>ul>li:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

nav>ul>li>a.active {
    color: var(--secondary);
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 1002;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

#header {
    margin-top: 80px;
}

.hero-tabs {
    background: linear-gradient(135deg, rgb(46, 86, 153), rgba(0, 168, 150, 0.9)),
        url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
    overflow: hidden;
    height: 600px;
    display: flex;
    align-items: center;
}

.hero-container {
    width: 100%;
    height: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    /* gap: 28px; */
    justify-content: space-evenly;
    padding: 60px 0;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.tab-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-content,
.image-content,
.explore-markets .container,
.featured-products .container,
.products-slider-container,
.circular-blog .container,
footer .container {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.text-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.text-content .highlight {
    color: var(--secondary);
    text-shadow: 0 2px 10px rgba(255, 107, 0, 0.3);
}

.text-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.floating-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.floating-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.floating-card h3 {
    font-size: 1.3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.blog-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.blog-card h4 {
    font-size: 1.2rem;
}

.explore-markets {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.search-filters {
    background: var(--light);
    padding: 40px;
    border-radius: 14px;
    border: 1px solid var(--border);
}

.filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 20px;
    align-items: end;
}

.filter-group,
.floating-card,
.stat-item,
.blog-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.filter-select select {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    color: var(--dark);
    font-size: 14px;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-select select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 94, 184, 0.1);
    outline: none;
}

.filter-select {
    position: relative;
}

.filter-select::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    pointer-events: none;
}

.search-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    height: fit-content;
    white-space: nowrap;
}

.search-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 94, 184, 0.3);
}

.featured-products {
    padding: 80px 0;
    background: var(--gradient);
    margin-top: 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.featured-products .section-title {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.products-slider-container {
    position: relative;
    padding: 0 80px;
}

.products-viewport {
    overflow: hidden;
    border-radius: 20px;
}

.products-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
}

.product-card {
    flex: 0 0 calc(33.333% - 20px);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.product-card:hover {
    transform: translateY(-14px);
}

.product-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 28px;
    flex-grow: 1;
}

.product-content,
.footer-column,
.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-content h3 {
    color: var(--primary);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.3;
}

.product-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.product-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #005eb8;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: #005eb8;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

.slider-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.slider-nav:disabled:hover {
    background: white;
    color: #005eb8;
    transform: translateY(-50%);
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
}

.slider-indicator.active {
    background: white;
    width: 36px;
    border-radius: 20px;
}

.view-all-container {
    text-align: center;
}

.view-all-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.view-all-btn:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255, 255, 255, 0.2);
}

.stats-section {
    padding: 80px 0;
    background: var(--gradient);
    color: var(--white);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-box {
    padding: 30px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.circular-blog {
    padding: 80px 0;
    background: var(--white);
}

.blog-highlights {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: start;
    height: 400px;
}

.main-article {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    background: var(--light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.article-image {
    height: 100%;
    min-height: 300px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 34px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.article-badge {
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
}

.article-content p {
    color: var(--gray);
    line-height: 1.6;
}

.side-articles {
    display: flex;
    flex-direction: column;
}

.slider-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.articles-slider {
    height: 300px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider-track {
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.article-item {
    padding: 24px;
    background: var(--light);
    border-radius: 8px;
    border-left: 3px solid var(--accent);
    transition: all 0.3s ease;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0.6;
    transform: scale(0.95);
}

.article-item.active {
    opacity: 1;
    transform: scale(1);
    background: var(--white);
    box-shadow: var(--shadow);
    border-left: 3px solid var(--primary);
}

.article-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    margin: 0;
}

.read-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.slider-arrow {
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.slider-arrow:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.slider-arrow:disabled {
    background: var(--primary);
    cursor: pointer;
    opacity: 0.5;
}

.slider-arrow:disabled:hover {
    background: var(--primary);
    transform: scale(1);
}

#footer {
    margin-top: auto;
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
    border-bottom: 1px solid #444;
    padding-bottom: 12px;
}

.footer-column h3 {
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
    display: block;
}

.footer-column a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-location i {
    color: var(--secondary);
}

.footer-copyright {
    flex: 1;
    text-align: center;
    color: #aaa;
    font-size: 0.8rem;
    line-height: 1.4;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
    white-space: nowrap;
}

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

.footer-links .cookie-settings {
    background: var(--secondary);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.7rem;
}

.footer-links .cookie-settings:hover {
    background: #e55a00;
    color: var(--white);
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 94, 184, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 94, 184, 0.4);
}

@media (max-width: 1200px) {

    .hero-container,
    .container {
        max-width: 1140px;
        padding: 0 16px;
    }
}

@media (max-width: 992px) {

    .hero-container,
    .container {
        max-width: 960px;
    }

    header .container {
        padding: 0 14px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-overlay {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 14px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 80px 25px 30px;
        gap: 0;
    }

    nav>ul>li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    nav>ul>li>a {
        display: flex;
        padding: 15px 0;
        font-size: 18px;
        justify-content: space-between;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        width: 100%;
        min-width: auto;
        max-width: none;
        margin-top: 0;
        border: none;
        padding: 0;
        background: var(--light);
    }

    .dropdown-content {
        flex-direction: column;
        padding: 15px;
        gap: 20px;
        max-height: none;
    }

    .dropdown.show {
        display: block;
    }

    .dropdown-section {
        min-width: auto;
    }

    .dropdown-section h4 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .dropdown-section li a {
        font-size: 13px;
        padding: 4px 0;
    }

    nav>ul>li>a.active::after {
        display: none;
    }

    nav>ul>li>a.active {
        background: var(--light);
        padding-left: 15px;
        margin-left: -15px;
        margin-right: -15px;
        padding-right: 15px;
    }

    .filter-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .product-card {
        flex: 0 0 calc(50% - 14px);
    }

    .products-slider-container {
        padding: 0 60px;
    }

    nav ul {
        gap: 5px;
    }

    nav a {
        padding: 8px 10px;
        font-size: 14px;
    }

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

    .blog-highlights {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .main-article {
        grid-template-columns: 1fr;
    }

    .article-image {
        min-height: 250px;
        order: -1;
    }

    .articles-slider {
        height: 280px;
    }
}

@media (max-width: 768px) {

    .hero-container {
        gap: 16px;
    }

    .hero-container,
    .container {
        max-width: 720px;
        padding: 0 12px;
    }

    .hero-container,
    footer {
        padding: 40px 12px;
    }

    .hero-tabs {
        height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .explore-markets {
        padding: 40px 0;
    }

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

    .search-filters {
        padding: 30px 20px;
    }

    .filter-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .search-btn {
        justify-content: center;
        width: 100%;
    }

    .featured-products {
        padding: 40px 0;
    }

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

    .product-card {
        flex: 0 0 100%;
    }

    .products-slider-container {
        padding: 0 40px;
    }

    .slider-nav {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .circular-blog {
        padding: 40px 0;
    }

    .article-content {
        padding: 24px;
    }

    .article-content h3 {
        font-size: 1.3rem;
    }

    .article-item {
        padding: 20px;
        height: 110px;
    }

    .articles-slider {
        height: 250px;
    }

    .blog-highlights {
        height: auto;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        min-width: 100%;
        margin-top: 10px;
    }

    .dropdown.show {
        display: block;
    }

    nav>ul>li>a i {
        transform: none !important;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 28px;
    }

    .footer-bottom {
        padding: 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .footer-copyright {
        margin: 0;
        order: 3;
    }

    .footer-links {
        justify-content: center;
        order: 2;
    }

    .footer-location {
        order: 1;
    }
}

@media (max-width: 576px) {
    .hero-container {
        max-width: 540px;
        padding: 40px 14px;
    }

    .container {
        max-width: 540px;
        padding: 0 14px;
    }

    nav ul {
        padding: 80px 20px 20px;
    }

    nav>ul>li>a {
        padding: 12px 0;
        font-size: 16px;
    }

    .dropdown-content {
        padding: 10px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .featured-products .section-title {
        font-size: 1.8rem;
    }

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

    .content-grid {
        grid-template-columns: 1fr;
    }

    .article-content {
        padding: 20px;
    }

    .article-item h4 {
        font-size: 0.95rem;
    }

    .slider-controls {
        gap: 10px;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .slider-indicators {
        gap: 4px;
    }

    .slider-indicator {
        width: 8px;
        height: 8px;
    }

    .slider-indicator.active {
        width: 16px;
    }

    footer {
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .products-slider-container {
        padding: 0 20px;
    }
}