/* ==========================================================================
   Base & Theme Setup
   ========================================================================== */
body {
    margin: 0;
    padding: 0;
    background-color: #f4f7f9;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #333333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    flex: 1;
    width: 100%;
    box-sizing: border-box;
}

.page-title {
    text-align: center;
    font-size: 2.2rem;
    color: #336699;
    margin-bottom: 40px;
}

.page-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.breadcrumbs {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumbs a {
    color: #336699;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumbs a:hover {
    color: red;
    text-decoration: underline;
}

/* ==========================================================================
   Navigation Styles
   ========================================================================== */
.catalog-nav {
    background-color: #ffffff;
    border-bottom: 3px solid #336699;
    box-shadow: 0 2px 10px rgba(51, 102, 153, 0.15);
    position: relative;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    position: relative;
    min-height: 70px;
}

.brand {
    position: absolute;
    left: 20px;
}

.brand a {
    font-size: 1.25rem;
    font-weight: bold;
    color: #336699;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-item {
    padding: 0 15px;
    position: relative;
}

.nav-link {
    display: block;
    padding: 25px 0;
    color: #4a4a4a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.2s ease;
}

.nav-item:hover > .nav-link {
    color: #336699;
}

/* Dropdown Menus */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: 3px solid red;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    text-align: left;
    z-index: 1001;
}

.nav-item:hover > .dropdown-menu,
.dropdown-submenu:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu li a:hover {
    background-color: #f4f7f9;
    color: red;
}

.dropdown-menu li a span {
    font-size: 0.8rem;
    color: #336699;
}

.dropdown-submenu > .dropdown-menu {
    top: -10px;
    left: 100%;
}

/* ==========================================================================
   Header Banners & Search
   ========================================================================== */
.trade-banner {
    background-color: #222222;
    color: #ffffff;
    text-align: center;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    margin-bottom: 30px;
}

.trade-banner p {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.search-form {
    display: flex;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 4px 10px rgba(51, 102, 153, 0.1);
    border-radius: 4px;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    font-size: 1rem;
    border: 2px solid #336699;
    border-right: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    color: #333333;
    transition: border-color 0.2s ease;
}

.search-input:focus {
    border-color: red;
}

.search-btn {
    padding: 15px 30px;
    background-color: #336699;
    color: #ffffff;
    border: 2px solid #336699;
    border-radius: 0 4px 4px 0;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-btn:hover {
    background-color: red;
    border-color: red;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.trade-login-btn,
.carousel-btn,
.submit-btn,
.download-btn {
    display: inline-block;
    background-color: #336699;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.trade-login-btn,
.carousel-btn {
    background-color: red;
    padding: 10px 24px;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.trade-login-btn:hover,
.carousel-btn:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    color: #ffffff;
}

.submit-btn {
    padding: 15px 30px;
    font-size: 1rem;
    letter-spacing: 1px;
    width: 100%;
}

.download-btn {
    width: 100%;
    padding: 12px 20px;
    letter-spacing: 0.5px;
    border: 2px solid #336699;
    box-sizing: border-box;
}

.submit-btn:hover,
.download-btn:hover {
    background-color: red;
    border-color: red;
    color: #ffffff;
}

.view-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: #336699;
    border: 2px solid #336699;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.view-btn:hover {
    background-color: red;
    border-color: red;
    color: #ffffff;
}

.back-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #336699;
    color: #ffffff;
    text-decoration: none;
    border-radius: 3px;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.back-btn:hover {
    background-color: red;
}

/* ==========================================================================
   Alerts & Messages
   ========================================================================== */
.error-msg {
    background-color: #fee2e2;
    color: #b91c1c;
    border-left: 4px solid red;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.success-msg {
    background-color: #d1fae5;
    color: #047857;
    border-left: 4px solid #10b981;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 25px;
    font-weight: bold;
}

/* ==========================================================================
   Homepage & Widgets (Carousel, Categories)
   ========================================================================== */
.carousel {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.carousel-inner {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.carousel-item picture,
.carousel-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    padding: 20px 40px;
    border-radius: 6px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.carousel-caption span {
    font-size: 1.4rem;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    white-space: nowrap;
}

.category-section-title {
    text-align: center;
    font-size: 1.8rem;
    color: #336699;
    margin-bottom: 30px;
    position: relative;
}

.category-section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: red;
    display: block;
    margin: 10px auto 0 auto;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.category-card {
    display: block;
    text-decoration: none;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #eaeaeb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(51, 102, 153, 0.15);
}

.category-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 3px solid #336699;
    transition: border-color 0.2s ease;
}

.category-card:hover img {
    border-color: red;
}

.category-card h3 {
    margin: 0;
    padding: 20px;
    font-size: 1.1rem;
    color: #333;
    text-align: center;
}

/* ==========================================================================
   Product Grid (Catalog/Search Results)
   ========================================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: #ffffff;
    border: 1px solid #eaeaeb;
    border-bottom: 3px solid transparent;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(51, 102, 153, 0.1);
    border-bottom: 3px solid #336699;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-title {
    font-size: 1.1rem;
    color: #336699;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.product-sku {
    font-size: 0.85rem;
    color: #888888;
    margin-bottom: 20px;
}

/* ==========================================================================
   Single Product Page
   ========================================================================== */
.product-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    background-color: #ffffff;
    border: 1px solid #eaeaeb;
    border-top: 4px solid #336699;
    border-radius: 4px;
    padding: 40px;
}

.product-image-container {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.product-image-container img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

.product-info-container {
    flex: 1.5;
    min-width: 300px;
}

.product-info-container .product-title {
    font-size: 2.2rem;
}

.product-info-container .product-sku {
    font-size: 1rem;
    color: #777777;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
}

.product-specs {
    margin-bottom: 30px;
    background-color: #f4f7f9;
    padding: 15px;
    border-left: 4px solid red;
}

.product-specs p {
    margin: 5px 0;
    font-size: 0.95rem;
}

.product-specs strong {
    color: #336699;
}

.product-description {
    line-height: 1.6;
    color: #4a4a4a;
    font-size: 1rem;
}

.product-description ul {
    padding-left: 20px;
}

.product-description li {
    margin-bottom: 8px;
}

/* ==========================================================================
   About Us Page
   ========================================================================== */
.about-hero {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
    border-bottom: 4px solid #336699;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.about-hero img { 
    width: 100%; 
    max-width: 100%; 
    height: auto;
}

.about-hero h1 {
    color: #336699;
    font-size: 2.5rem;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    background-color: #ffffff;
    border: 1px solid #eaeaeb;
    border-top: 4px solid red;
    padding: 50px;
    border-radius: 4px;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(51, 102, 153, 0.05);
}

.about-text {
    flex: 1.5;
    min-width: 300px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.about-text h2 {
    color: #336699;
    margin-top: 0;
    font-size: 1.8rem;
    border-bottom: 2px solid #f4f7f9;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.about-image-wrapper img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.image-caption {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    text-align: center;
    background-color: #f4f7f9;
    padding: 15px;
    border-radius: 4px;
    border-left: 3px solid #336699;
}

.about-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

.about-section h2 {
    color: #336699;
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background-color: #f4f7f9;
    padding: 30px;
    border-radius: 4px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-bottom-color: red;
}

.value-card h3 {
    color: #336699;
    font-size: 1.3rem;
    margin-top: 0;
}

/* ==========================================================================
   Brochures Page
   ========================================================================== */
.brochure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 40px;
}

.brochure-card {
    background-color: #ffffff;
    border: 1px solid #eaeaeb;
    border-bottom: 4px solid #336699;
    border-radius: 6px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.brochure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(51, 102, 153, 0.15);
    border-bottom-color: red;
}

.brochure-img {
    width: 100%;
    max-width: 220px;
    height: auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 25px;
    border: 1px solid #eeeeee;
}

.brochure-title {
    font-size: 1.2rem;
    color: #336699;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.brochure-desc {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    background-color: #ffffff;
    border-top: 4px solid #336699;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(51, 102, 153, 0.05);
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    color: #336699;
    margin-top: 0;
    margin-bottom: 20px;
}

.contact-info p {
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.contact-info strong {
    color: #222;
}

.contact-form-wrapper {
    flex: 1.5;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #336699;
    font-weight: bold;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    color: #333333;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: red;
    outline: none;
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */
.site-footer {
    background-color: #336699;
    color: #ffffff;
    margin-top: auto;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}

.footer-top {
    display: grid;
    /* Reduced min width from 220px to 180px and gap from 40px to 30px */
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    padding: 50px 20px;
    align-items: start;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    border-bottom: 2px solid red;
    padding-bottom: 8px;
    display: inline-block;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #b0c4de;
    margin-bottom: 20px;
    margin-top: 0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: #b0c4de;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-col ul a:hover {
    color: red;
    padding-left: 5px; /* Adds a nice little interactive bump when hovered */
}

.footer-trade-link {
    display: inline-block;
    background-color: red;
    color: white;
    padding: 10px 18px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    border-radius: 3px;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}

.footer-trade-link:hover {
    background-color: #cc0000;
}

.footer-bottom {
    background-color: #222222; /* Matches your top trade banner */
    padding: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: #888888;
    letter-spacing: 0.5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    color: #b0c4de;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-icons svg {
    width: 26px;
    height: 26px;
    fill: currentColor; /* Inherits the hover color automatically */
}

.social-icons a:hover {
    color: red;
    transform: translateY(-3px); /* Gives the icon a nice little pop upward */
}

/* ==========================================================================
   Mobile Responsiveness
   ========================================================================== */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #336699;
    cursor: pointer;
    position: absolute;
    right: 20px;
    padding: 5px;
}

@media (max-width: 900px) {
    /* Navigation */
    .mobile-menu-btn { display: block; }
    .nav-container { justify-content: flex-start; }
    
    .nav-links {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        border-top: 2px solid #e0e0e0;
    }
    
    .nav-links.active { display: flex; }
    .nav-item { border-bottom: 1px solid #eeeeee; padding: 0; }
    .nav-link { padding: 15px 20px; }
    
    .dropdown-menu, .dropdown-submenu > .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        border-top: 1px solid #eeeeee;
        display: none;
        opacity: 1;
        visibility: visible;
        padding-left: 15px;
    }
    
    .nav-item:hover > .dropdown-menu,
    .dropdown-submenu:hover > .dropdown-menu { display: none; }
    .nav-item.open > .dropdown-menu,
    .dropdown-submenu.open > .dropdown-menu { display: block !important; }
    
    /* Headers & Components */
    .trade-banner { flex-direction: column; padding: 20px; gap: 12px; }
    .search-form { flex-direction: column; }
    .search-input { border-right: 2px solid #336699; margin-bottom: 10px; border-radius: 4px; }
    .search-btn { border-radius: 4px; }
    
    .carousel { height: 320px; } 
    .carousel-caption { width: 85%; padding: 15px; bottom: 20px; gap: 10px; }
    .carousel-caption span { font-size: 1.1rem; white-space: normal; }
    .carousel-btn { padding: 8px 16px; font-size: 0.8rem; }
    
    /* Pages */
    .about-section h2 { font-size: 1.5rem; }
    .about-container { flex-direction: column; padding: 25px; }
    .about-hero h1 { font-size: 1.8rem; }
    .about-hero p { font-size: 1rem; }
	.about-hero img { 
		width: 100%; 
		max-width: 100%; 
		height: auto;
	}

    .product-layout { flex-direction: column; padding: 20px; gap: 25px; }
    .product-info-container .product-title { font-size: 1.8rem; }
    
    .contact-container { padding: 20px; gap: 30px; flex-direction: column; }
	.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    color: #b0c4de;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-icons svg {
    width: 26px;
    height: 26px;
    fill: currentColor; /* Inherits the hover color automatically */
}

.social-icons a:hover {
    color: red;
    transform: translateY(-3px); /* Gives the icon a nice little pop upward */
}

}

	/* ==========================================================================
   Cookie Consent Banner
   ========================================================================== */
	.cookie-banner {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		background-color: #222222; /* Matches your Trade Login banner */
		color: #ffffff;
		z-index: 9999;
		box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
		padding: 15px 20px;
		box-sizing: border-box;
		font-size: 0.95rem;
	}

	.cookie-content {
		max-width: 1200px;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 20px;
		flex-wrap: wrap;
	}

	.cookie-content p {
		margin: 0;
		flex: 1;
		line-height: 1.5;
	}

	.cookie-content a {
		color: #ffffff;
		text-decoration: underline;
		font-weight: bold;
		transition: color 0.2s ease;
	}

	.cookie-content a:hover {
		color: red; /* Matches your global hover state */
	}

	.cookie-btn {
		background-color: #336699;
		color: #ffffff;
		border: none;
		padding: 12px 24px;
		font-size: 0.9rem;
		font-weight: bold;
		text-transform: uppercase;
		border-radius: 4px;
		letter-spacing: 1px;
		cursor: pointer;
		transition: background-color 0.2s ease, transform 0.2s ease;
		white-space: nowrap;
		box-shadow: 0 3px 6px rgba(0,0,0,0.2);
	}

	.cookie-btn:hover {
		background-color: red;
		transform: translateY(-2px);
		box-shadow: 0 5px 10px rgba(0,0,0,0.3);
	}

	/* Mobile Responsiveness for Cookie Banner */
	@media (max-width: 768px) {
		.cookie-content {
			flex-direction: column;
			text-align: center;
			gap: 15px;
		}
		.cookie-btn {
			width: 100%;
		}
		.about-hero img { 
    width: 100%; 
    max-width: 100%; 
    height: auto;
}
	}