:root {
    --darkest-bg: #1A1A1A;
    --deep-teal: #E69500;
    --bright-teal: #FFCD00;
    --light-bg: #E69500;
    --pure-white: #FFFFFF;
    
    /* Mapped theme variables */
    --card-bg: #1A1A1A;
    --dark-red: #E69500;
    --accent-red: #FFCD00;
    --bright-red: #FFCD00;
    --light-text: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: var(--darkest-bg);
    color: var(--light-text);
    line-height: 1.6;
}

/* Header & Top Bar Layout */
.site-header {
    background-color: var(--darkest-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    border-bottom: 1px solid var(--deep-teal);
    padding: 15px 20px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    color: var(--bright-teal);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.logo:hover {
    color: var(--deep-teal);
}

/* Header Search Form */
.header-search-form {
    display: grid;
    grid-template-columns: 1fr auto;
    flex: 1;
    max-width: 500px;
    background-color: var(--pure-white);
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--deep-teal);
}

.header-search-form input {
    width: 100%;
    padding: 10px 15px;
    border: none;
    background: transparent;
    color: var(--darkest-bg);
    outline: none;
}

.header-search-form button {
    background-color: var(--bright-teal);
    color: var(--darkest-bg);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.header-search-form button:hover {
    background-color: var(--deep-teal);
    color: var(--pure-white);
}

/* Shopping Basket */
.header-actions {
    display: flex;
    align-items: center;
}

.cart-basket {
    position: relative;
    color: var(--pure-white);
    font-size: 1.3rem;
    text-decoration: none;
    background-color: #262626;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.cart-basket:hover {
    background-color: var(--bright-teal);
    color: var(--darkest-bg);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--bright-teal);
    color: var(--darkest-bg);
    font-size: 0.75rem;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Separate Navigation Bar Underneath */
.main-nav {
    background-color: #262626;
    border-bottom: 1px solid var(--bright-teal);
    padding: 12px 0;
}

.main-nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--bright-teal);
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
}

/* General Layout & Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1, h2, h3 {
    color: var(--bright-teal);
    margin-bottom: 20px;
}

p {
    color: #E0E0E0;
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    background-color: var(--bright-teal);
    color: var(--darkest-bg);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: var(--deep-teal);
    color: var(--pure-white);
    transform: translateY(-2px);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    background-color: #262626;
    color: var(--pure-white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 205, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--bright-teal);
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
}

input, textarea {
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #404040;
    background-color: #262626;
    color: var(--pure-white);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--bright-teal);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Contact Icons */
.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bright-teal);
    color: var(--darkest-bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
    font-size: 1.2rem;
}

.float-icon:hover {
    background-color: var(--deep-teal);
    color: var(--pure-white);
    transform: scale(1.1);
}

/* Footer */
footer {
    text-align: left;
    padding: 60px 20px;
    background-color: var(--darkest-bg);
    color: #E0E0E0;
    margin-top: 0;
    border-top: 2px solid var(--deep-teal);
}

/* Responsive Design for Mobile Navigation */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }
    .header-search-form {
        order: 3;
        width: 100%;
        max-width: 100%;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 15px;
        padding-top: 15px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .main-nav .container {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Logo Image Sizing */
.logo-link {
    display: inline-block;
    line-height: 0;
}

.logo-img {
    width: 220px;
    height: 80px;
    object-fit: contain;
    display: block;
}

@media (max-width: 480px) {
    .logo-img {
        width: 160px;
        height: 58px;
    }
}

/* Hero Section Layout */
.hero-section {
    position: relative;
    height: 550px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.85);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--bright-teal);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.25rem;
    color: #E0E0E0;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.1rem;
    }
}

/* Split Section Layout */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 60px auto;
}

.split-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.split-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--bright-teal);
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.split-image-wrapper {
    width: 100%;
}

.split-img, .split-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    object-fit: cover;
}

@media (max-width: 768px) {
    .split-section {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 40px auto;
    }
    .split-image-wrapper {
        order: -1;
    }
}

/* Three-Column Feature Section */
.three-col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.col-card {
    background-color: #262626;
    color: var(--pure-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 205, 0, 0.1);
}

.col-card:hover {
    transform: translateY(-5px);
    border-color: var(--bright-teal);
}

.col-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.col-card h3, 
.col-card p {
    padding: 0 20px;
}

.col-card h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.25rem;
    color: var(--bright-teal);
}

.col-card p {
    margin-bottom: 20px;
    color: #CCCCCC;
}

@media (max-width: 900px) {
    .three-col-grid {
        grid-template-columns: 1fr;
    }
}

/* Parallax Section Styling */
.parallax-section {
    position: relative;
    height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    margin: 60px 0;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.88);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.parallax-content h2 {
    font-size: 2.5rem;
    color: var(--bright-teal);
    margin-bottom: 15px;
}

.parallax-content p {
    font-size: 1.15rem;
    color: #E0E0E0;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
        height: 450px;
    }
    .parallax-content h2 {
        font-size: 2rem;
    }
}

/* Call to Action Banner */
.cta-banner {
    background-color: #262626;
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
    border-top: 1px solid var(--deep-teal);
    border-bottom: 1px solid var(--deep-teal);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-banner h2 {
    color: var(--pure-white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-banner p {
    color: #E0E0E0;
    font-size: 1.15rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-btn {
    display: inline-block;
    background-color: var(--bright-teal);
    color: var(--darkest-bg);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    background-color: var(--pure-white);
    color: var(--darkest-bg);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 40px 20px;
    }
    .cta-banner h2 {
        font-size: 1.9rem;
    }
}

/* Featured Products Slider Section */
.featured-slider-section {
    margin: 60px auto;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.slider-controls {
    display: flex;
    gap: 10px;
}

.slider-arrow {
    background-color: #262626;
    color: var(--pure-white);
    border: 1px solid #404040;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease, transform 0.2s ease;
}

.slider-arrow:hover {
    background-color: var(--bright-teal);
    color: var(--darkest-bg);
    transform: scale(1.05);
}

.products-slider-wrapper {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(33.333% - 20px);
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 10px;
}

.products-slider-wrapper::-webkit-scrollbar {
    display: none;
}

.product-slide-card {
    background-color: #262626;
    color: var(--pure-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    border: 1px solid rgba(255, 205, 0, 0.1);
}

.product-slide-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-slide-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-slide-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--bright-teal);
}

.product-slide-info .price {
    color: var(--bright-teal);
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.product-slide-info p {
    font-size: 0.95rem;
    color: #CCCCCC;
    margin-bottom: 20px;
    flex: 1;
}

.product-slide-info .btn {
    align-self: flex-start;
    padding: 8px 16px;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .products-slider-wrapper {
        grid-auto-columns: calc(50% - 15px);
    }
}

@media (max-width: 600px) {
    .products-slider-wrapper {
        grid-auto-columns: 100%;
    }
}

/* Testimonials Section */
.testimonials-section {
    margin: 60px auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.testimonial-card {
    background-color: #262626;
    color: var(--pure-white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 205, 0, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--bright-teal);
}

.testimonial-stars {
    color: var(--bright-teal);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.testimonial-quote {
    font-size: 1rem;
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.05rem;
    color: var(--pure-white);
    margin-bottom: 3px;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--bright-teal);
    margin: 0;
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Newsletter Section */
.newsletter-section {
    background-color: #262626;
    padding: 60px 20px;
    margin-top: 60px;
    color: var(--pure-white);
    border-top: 1px solid var(--deep-teal);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text h2 {
    color: var(--bright-teal);
    margin-bottom: 10px;
}

.newsletter-text p {
    color: #E0E0E0;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #404040;
    font-size: 1rem;
    background-color: var(--pure-white);
    color: var(--darkest-bg);
}

.newsletter-form button {
    background-color: var(--bright-teal);
    color: var(--darkest-bg);
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--pure-white);
    color: var(--darkest-bg);
}

@media (max-width: 768px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    .newsletter-form {
        flex-direction: column;
    }
}

/* Footer Styling */
.site-footer {
    background-color: var(--darkest-bg);
    color: #E0E0E0;
    padding: 60px 20px;
    margin-top: 0;
    border-top: 2px solid var(--deep-teal);
    text-align: left;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
}

.footer-col h3 {
    color: var(--bright-teal);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col p, .footer-col li {
    margin-bottom: 10px;
    list-style: none;
    font-size: 0.95rem;
    color: #E0E0E0;
}

.footer-col i {
    margin-right: 10px;
    color: var(--bright-teal);
}

.footer-nav a {
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--bright-teal);
}

/* Payment Icons */
.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 2rem;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.payment-methods i {
    color: var(--pure-white);
    margin: 0;
}

.copyright {
    font-size: 0.8rem;
    margin-top: 20px;
    color: #A0A0A0;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .payment-methods {
        justify-content: flex-start;
    }
}

/* Product Card Styling */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.product-grid-card {
    background-color: #262626;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 205, 0, 0.1);
}

.product-grid-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.product-grid-card h3 {
    color: var(--bright-teal);
    margin: 10px 0;
    font-size: 1.25rem;
}

.product-grid-card .btn {
    margin-top: auto;
    background-color: var(--bright-teal);
    color: var(--darkest-bg);
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Details Layout */
.product-main-grid,
.product-specs-fluid {
    display: grid;
    background-color: #262626;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 205, 0, 0.1);
}

.product-main-grid {
    grid-template-columns: 30% 70%;
    gap: 40px;
    align-items: start;
}

.product-info-col h1 {
    font-size: 2.2rem;
    color: var(--bright-teal);
    margin-bottom: 10px;
}

.product-info-col .product-price {
    font-size: 1.5rem;
    color: var(--bright-teal);
    font-weight: bold;
    margin-bottom: 20px;
}

.product-description {
    font-size: 1.05rem;
    color: #E0E0E0;
    line-height: 1.6;
    margin-bottom: 30px;
}

.product-feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-top: 15px;
    border-top: 1px solid #404040;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #E0E0E0;
    font-size: 0.95rem;
}

.badge-item i {
    color: var(--bright-teal);
    font-size: 1.1rem;
}

.product-specs-fluid {
    margin-top: 40px;
    display: block;
}

.product-specs-fluid h2 {
    color: var(--bright-teal);
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--bright-teal);
    padding-bottom: 10px;
}

.specs-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #404040;
}

.spec-label {
    font-weight: 500;
    color: var(--pure-white);
}

.spec-value {
    color: #CCCCCC;
    text-align: right;
    font-weight: 500;
}

@media (max-width: 900px) {
    .product-main-grid {
        grid-template-columns: 1fr;
    }
}

.product-image-col {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.details-main-img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    border-radius: 6px;
    background-color: var(--pure-white);
}

/* Contact Page Form & Details Columns */
.contact-form-wrapper,
.contact-details-wrapper {
    background-color: #262626;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 205, 0, 0.1);
}

.contact-form-wrapper h2,
.contact-details-wrapper h2 {
    color: var(--bright-teal);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--pure-white);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #404040;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: var(--pure-white);
    background-color: #1A1A1A;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bright-teal);
    background-color: #1A1A1A;
}

.contact-form-wrapper .btn {
    width: 100%;
    padding: 14px;
    background-color: var(--bright-teal);
    color: var(--darkest-bg);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form-wrapper .btn:hover {
    background-color: var(--deep-teal);
    color: var(--pure-white);
}

.contact-page-container {
    margin: 40px auto 60px auto;
}

.contact-page-container .section-title {
    margin-bottom: 40px;
}

.contact-page-container .section-title h1 {
    color: var(--bright-teal);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-page-container .section-title p {
    color: #E0E0E0;
    font-size: 1.1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-intro {
    color: #E0E0E0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon-box {
    background-color: rgba(255, 205, 0, 0.15);
    color: var(--bright-teal);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-text h3 {
    color: var(--bright-teal);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-text p {
    color: #E0E0E0;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.category-header-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}