/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%;}body{margin:0;}main{display:block;}h1{font-size:2em;margin:.67em 0;}hr{box-sizing:content-box;height:0;overflow:visible;}pre{font-family:monospace,monospace;font-size:1em;}a{background-color:transparent;}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted;}b,strong{font-weight:bolder;}code,kbd,samp{font-family:monospace,monospace;font-size:1em;}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sub{bottom:-.25em;}sup{top:-.5em;}img{border-style:none;}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0;}button,input{overflow:visible;}button,select{text-transform:none;}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0;}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText;}fieldset{padding:.35em .75em .625em;}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal;}progress{vertical-align:baseline;}textarea{overflow:auto;}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0;}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto;}[type=search]{-webkit-appearance:textfield;outline-offset:-2px;}[type=search]::-webkit-search-decoration{-webkit-appearance:none;}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit;}details{display:block;}summary{display:list-item;}template{display:none;}[hidden]{display:none;}
                    
*, *::before, *::after {
    box-sizing: border-box;
}
:root {
    --primary: #0d6efd;
    --secondary: #6c757d;
    --color3: #0dcaf0;
    --color4: #198754;
    --white: white;
    --light: #f8f9fa;
    --dark: #212529;
}
body, html {
    min-height: 100vh;
}
.cd-main-content {
    /* min-height: 100vh; */
    z-index: 2;
}

/* Global Styles and Variables */
:root {
    --primary-blue: #2563eb;
    --primary-green: #059669;
    --primary-purple: #7c3aed;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --blue-50: #eff6ff;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --green-50: #f0fdf4;
    --green-600: #059669;
    --purple-50: #faf5ff;
    --purple-600: #7c3aed;
}

*, html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: unset;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: #fff;
}

/* Typography */
h1, .h1 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: unset;
}

h2, .h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.3;
    text-transform: unset;
}

h3, .h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    text-transform: unset;
}

p {
    font-size: 1rem;
    line-height: 1.7;
}

/* Utility Classes */
.icon {
    width: 1.5rem;
    height: 1.5rem;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.icon-lg {
    width: 2rem;
    height: 2rem;
}

.icon-xl {
    width: 2.5rem;
    height: 2.5rem;
}

.icon-sm {
    width: 1rem;
    height: 1rem;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background: var(--blue-700);
    border-color: var(--blue-700);
}

.btn-ghost {
    background: transparent;
    color: white;
    border-color: transparent;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-green {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.btn-green:hover {
    background: #047857;
    border-color: #047857;
}

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

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

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

.btn-full {
    width: 100%;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 0 0 0 !important;
}

.header-container.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.2rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo > img {
    height: 3rem;
    width: auto;
    max-width: unset;
}


/* Desktop Navigation */
.desktop-nav .cd-main-header, .cd-primary-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
    padding: 0 0 0 0;
    background-color: unset;
    border: unset;
}

@media (min-width: 1200px) {
    .desktop-nav .cd-main-header, .cd-primary-nav {
        display: flex;
    }
}

/* Remove unnecessary header spacing */
.section+.desktop-nav {
    padding: 0 0 0 0;
}

.desktop-nav .cd-main-header .cd-nav .cd-primary-nav {
    /* formerly .nav-item */
    position: relative;
}
.cd-nav>ul {
    list-style-type: none;
    margin-left: unset;
    margin-top: 5px;
    margin-bottom: 5px;
    &>li {
        margin-left: 0px;
    }
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    color: white;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
    background: black;
}

.chevron {
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

.nav-item:hover .chevron {
    transform: rotate(180deg);
}

/* Dropdown Styles */
.dropdown {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    background: black;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem);
    transition: all 0.2s ease;
    z-index: 50;
}

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

.products-dropdown {
    width: 600px;
    padding: 1.5rem;
}

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

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

.dropdown-column:nth-child(2) {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
}

.dropdown-category {
    padding: unset;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
    transition: all 0.2s ease;
    margin-bottom: 0.25rem;
}

.dropdown-category:hover {
    color: #1d4ed8;
    background: black;
}

.dropdown-subcategory {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.dropdown-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
    margin: 0.125rem 0;
}

.dropdown-link:hover {
    color: rgba(255, 255, 255, 0.6);
    background: transparent;
}

.dropdown-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.dropdown-footer-link {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.dropdown-footer-link:hover {
    color: var(--primary-blue);
}

.dropdown-footer-link.product-finder-tool {
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-footer-link.product-finder-tool:hover {
    color: #047857;
}

.dropdown-footer-link.product-finder-tool .icon {
    color: var(--primary-green);
}

.standard-dropdown {
    width: 200px;
    padding: 1rem;
}

.dropdown-simple {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dropdown-simple-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.dropdown-simple-link:hover {
    color: var(--primary-blue);
    background: rgba(255, 255, 255, 0);
}

/* Desktop Actions */
.desktop-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 1200px) {
    .desktop-actions {
        display: flex;
    }
}

/* Cart Styles */
.cart-container {
    position: relative;
}

.cart-btn {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    background: var(--primary-blue);
    color: white;
    font-size: 0.75rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Mobile menu cart badge override */
.mobile-actions .cart-badge {
    background: white;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

.cart-popup {
    position: absolute;
    top: calc(100% + 18px);
    right: 0;
    width: 400px;
    background: black;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem);
    transition: all 0.2s ease;
    z-index: 50;
}

.cart-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

.cart-item-count {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
}

.cart-items::-webkit-scrollbar {
    width: 8px;
}

.cart-items::-webkit-scrollbar-track {
    background: #1f2937;
}

.cart-items::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 4px;
}

.cart-items::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

.cart-item {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item-image {
    width: 3rem;
    height: 3rem;
    background: var(--gray-800);
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.plastic-tube-icon {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: white;
}

.cart-item-sku {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.cart-item-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-qty-btn {
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: var(--gray-800);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
}

.cart-qty-btn:hover {
    background: var(--gray-700);
}

.cart-quantity span {
    color: white;
}

.cart-item-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: white;
}

.cart-remove {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: color 0.2s ease;
}

.cart-remove:hover {
    color: #ef4444;
}

.cart-summary {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: white;
}

.cart-summary-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0.75rem 0;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: white;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
}

@media (min-width: 1200px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Ensure mobile menu button shows for tablet and mobile */
@media (max-width: 1199px) {
    .mobile-menu-btn {
        display: flex;
    }

    .desktop-nav,  {
        display: none;
    }

    .desktop-actions {
        display: none;
    }
}

.mobile-menu {
    display: none;
    background: black;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.mobile-nav-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    color: white;
}

.mobile-nav-toggle .chevron {
    color: white;
}

.mobile-secondary-toggle .chevron {
    color: white;
}

.mobile-dropdown {
    display: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
}

.mobile-dropdown.active {
    display: block;
}

.mobile-secondary-item {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-secondary-item:last-child {
    border-bottom: none;
}

.mobile-secondary-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: none;
    border: none;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    color: var(--primary-blue);
    transition: all 0.2s ease;
}

.mobile-secondary-toggle:hover {
    color: #1d4ed8;
    background: black;
}

.mobile-tertiary {
    display: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
}

.mobile-tertiary.active {
    display: block;
}

.mobile-tertiary-link {
    display: block;
    padding: 0.5rem 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.mobile-tertiary-link:hover {
    color: var(--primary-blue);
    background: black;
}

.mobile-simple-link {
    display: block;
    padding: 0.75rem;
    color: white;
    text-decoration: none;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.mobile-simple-link:hover {
    color: var(--primary-blue);
    background: black;
}

.mobile-actions {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-products-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-footer-link {
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.mobile-footer-link:hover {
    color: var(--primary-blue);
    background: black;
}

.mobile-footer-link.green {
    color: var(--primary-green);
}

/* Main Content Wrapper */
.main-wrapper, page {
    min-height: 100vh;
}

/* Fix part-trap wrapper taking up entire viewport */
.cd-main-content {
    min-height: unset;
    z-index: 2;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 20rem;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(37, 99, 235, 0.8), rgba(34, 197, 94, 0.6));
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.glass-dark {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    text-align: left;
    max-width: 600px;
    margin-left: 1.5rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Container matching - align with page content like breadcrumbs */
@media (min-width: 1200px) {
    .hero-content {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
    }

    .hero-container {
        padding: 0 1.5rem;
    }

    .glass-dark {
        margin-left: 0;
    }
}

.hero-title {
    color: white;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1199px) {
    .hero-content {
        position: absolute;
        inset: 0;
        margin: 0;
        max-width: none;
        padding: 0;
        justify-content: flex-start;
    }

    .hero-container {
        padding: 0 1.5rem;
        justify-content: flex-start;
    }

    .glass-dark {
        margin-left: 0;
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .glass-dark {
        padding: 1.5rem;
        max-width: none;
        margin: 0;
    }

    .hero-container {
        padding: 0 1rem;
        justify-content: center;
    }
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--gray-50);
    padding: 1rem 0;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: var(--primary-blue);
}

.breadcrumb-separator {
    width: 1rem;
    height: 1rem;
    color: var(--gray-400);
}

.breadcrumb-current {
    color: var(--gray-900);
    font-weight: 500;
}

/* Content Wrapper */
.content-wrapper {
    background: white;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr 3fr;
        align-items: stretch;
    }
}

.sidebar-image {
    display: none;
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    align-self: stretch;
}

@media (min-width: 1024px) {
    .sidebar-image {
        display: block;
        min-height: 100%;
    }
}

.sidebar-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, transparent 25%, white 100%);
}

.content-section {
    display: flex;
    flex-direction: column;
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-title {
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.section-divider {
    width: 100%;
    height: 1px;
    background: var(--gray-300);
}

.content-paragraph {
    margin-bottom: 3.5rem;
}

.content-text {
    color: var(--gray-700);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Visual Separators */
.visual-separator {
    margin-bottom: 3.5rem;
    width: 100%;
}

/* Container Cards */
.container-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

@media (min-width: 768px) {
    .container-cards {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.container-card {
    position: relative;
    border-radius: 0.625rem;
    width: 100%;
    height: 161px;
    min-width: 0;
    flex: 1;
    border: 1px solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
}

.container-card.blue {
    background: var(--blue-50);
    border-color: #bedbff;
}

.container-card.green {
    background: var(--green-50);
    border-color: #b9f8cf;
}

.container-card.purple {
    background: var(--purple-50);
    border-color: #e9d4ff;
}

.container-card-icon {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
}

.container-card-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.container-card-title {
    position: absolute;
    left: 25px;
    right: 25px;
    top: 69px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-card-title-text {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #101828;
    text-align: center;
    line-height: 24px;
    white-space: pre;
}

.container-card-content {
    position: absolute;
    left: 25px;
    right: 25px;
    top: 101px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-card-content-text {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #4a5565;
    text-align: center;
    line-height: 20px;
    white-space: pre;
}

/* Visual Image */
.visual-image {
    position: relative;
    height: 12rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.visual-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(30, 58, 138, 0.5), transparent);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 1.5rem 2rem;
}

.visual-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
}

.badge-blue {
    color: #1e40af;
}

.badge-green {
    color: #065f46;
}

.badge-purple {
    color: #581c87;
}

/* Call to Action Section */
.cta-section {
    background: var(--gray-50);
    padding: 4rem 0;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cta-card {
    background: var(--primary-blue);
    border-radius: 1rem;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    padding: 3rem;
    text-align: center;
}

.cta-icon {
    width: 4rem;
    height: 4rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cta-title {
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    color: white;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        align-items: center;
    }
}

/* Form Sections */
.form-section {
    padding: 5rem 0;
}

.form-section.light {
    background: linear-gradient(to bottom right, var(--blue-50), var(--green-50));
}

.form-section.blue {
    background: var(--blue-700);
}

.form-section.dark {
    background: var(--gray-900);
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.form-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.form-icon.white {
    background: white;
}

.form-title {
    font-size: 2.25rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.form-title.white {
    color: white;
}

.form-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
}

.form-description.white {
    color: white;
}

.form-card {
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--gray-200);
    padding: 2rem;
}

@media (min-width: 768px) {
    .form-card {
        padding: 3rem;
    }
}

.form-card.white {
    background: white;
}

.form-card.dark {
    background: var(--gray-800);
    border-color: var(--gray-700);
}

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

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

.form-group-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.form-group-title.white {
    color: white;
}

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

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

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

.form-label {
    font-weight: 500;
    color: var(--gray-900);
}

.form-label.white {
    color: white;
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
    color: var(--gray-900);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input.black,
.form-select.black,
.form-textarea.black {
    background: black;
    color: white;
    border-color: var(--gray-700);
}

.form-input.black::placeholder,
.form-textarea.black::placeholder {
    color: var(--gray-300);
}

.form-input.gray,
.form-select.gray,
.form-textarea.gray {
    background: var(--gray-700);
    color: white;
    border-color: var(--gray-600);
}

.form-input.gray::placeholder,
.form-textarea.gray::placeholder {
    color: var(--gray-400);
}

.form-textarea {
    min-height: 6rem;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkbox {
    width: 1rem;
    height: 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.25rem;
    accent-color: var(--primary-blue);
}

.form-submit {
    padding-top: 1.5rem;
    text-align: center;
}

.form-note {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #6F3A81;
    color: white;
    padding: 4rem 1.5rem;
    text-transform: unset;
    font-size: unset;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    height: 3.2rem;
    width: auto;
    filter: brightness(0) invert(1);
    max-width: 190px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.footer-social-link:hover {
    color: white;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: white;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-bottom-link:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container-cards {
        flex-direction: column;
    }

    .visual-badges {
        flex-direction: column;
        gap: 0.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem;
    z-index: 9999;
}

.search-modal.active {
    display: flex;
}

.search-modal-content {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 600px;
    margin-top: 10vh;
    animation: searchModalSlideDown 0.3s ease-out;
}

@keyframes searchModalSlideDown {
    from {
        opacity: 0;
        transform: translateY(-2rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
}

.search-modal-close {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--gray-500);
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.search-modal-close:hover {
    background: var(--gray-100);
    color: var(--gray-700);
}

.search-modal-body {
    padding: 1.5rem;
}

.search-input-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 2px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    pointer-events: none;
}

.search-filters {
    margin-bottom: 1.5rem;
}

.search-filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.search-filter-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease;
}

.search-filter-item:hover {
    background: var(--gray-50);
}

.search-filter-checkbox {
    width: 1rem;
    height: 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.25rem;
    accent-color: var(--primary-blue);
}

.search-filter-text {
    font-size: 0.875rem;
    color: var(--gray-700);
}

.search-suggestions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.search-suggestion {
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-suggestion:hover {
    background: var(--gray-100);
    transform: translateX(0.25rem);
}

.search-suggestion-icon {
    color: var(--gray-500);
}

.search-suggestion-text {
    color: var(--gray-700);
    font-weight: 500;
}

/* Utility Classes for Hover Effects */
.hover-scale:hover {
    transform: scale(1.05);
}

.hover-shadow:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(1rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}
      