/*
Theme Name: db-theme
Author: Diamond Bolt Admin
Description: Custom theme for Diamond Bolt.
Version: 5.9.1
*/

/* --- 1. Base Setup --- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden; 
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* --- 2. Top Bar (Logo + New Contact Layout) --- */
.top-bar-logo {
    background-color: #000;
    padding: 10px 20px;
    border-bottom: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-logo > a {
    display: block;
    line-height: 0;
    flex-shrink: 0;
}

.top-bar-logo img {
    width: 175px !important; 
    height: auto !important; 
    max-width: none !important;
    object-fit: contain;
    display: block;
}

/* Header Contact Info */
.header-contact-right {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.85rem;
    font-family: 'Barlow', sans-serif;
    color: #fff;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: color 0.2s;
    white-space: nowrap;
}

.contact-item:hover {
    color: #ccc;
}

.contact-divider {
    color: #444;
}

.icon-red { 
    stroke: #ccc;
    fill: none;
}
.icon-grey { 
    stroke: #ccc; 
    fill: none;
}

/* MOBILE HEADER ADJUSTMENTS */
@media (max-width: 900px) {
    /* Keep Logo Left, Options Right */
    .top-bar-logo {
        justify-content: space-between;
        padding: 10px 15px;
        align-items: flex-start; /* Align top so logo and list start at same level */
    }
    
    .top-bar-logo img {
        width: 130px !important; 
        margin-top: 5px; /* Slight offset to align with text */
    }

    /* Make options visible, stacked on the right, but icons aligned vertically */
    .header-contact-right {
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Aligns items to the left of this block -> Straight vertical line for icons */
        gap: 8px;
        font-size: 12px;
    }
    
    .contact-item {
        gap: 8px;
        white-space: normal; 
        text-align: left;
    }
    
    /* Hide dividers in vertical stack mode */
    .contact-divider {
        display: none;
    }
}


/* --- 3. Nav Bar Container --- */
.nav-container {
    background-color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 50px;
    border-top: 1px solid #222;
}

/* --- 4. Main Menu Styling --- */
.main-navigation {
    display: flex;
    align-items: center;
    height: 100%;
}

#primary-menu {
    display: flex;
    height: 100%;
}

#primary-menu > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

#primary-menu > li > a {
    color: #fff;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    height: 100%;
    display: flex;
    align-items: center;
    transition: background 0.3s;
}

#primary-menu > li > a:hover {
    background-color: #333;
}

/* --- 5. Dropdown Menus --- */
#primary-menu li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000;
    min-width: 200px;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

#primary-menu li:hover > ul {
    display: block;
}

#primary-menu li ul li a {
    color: #ccc;
    padding: 12px 20px;
    display: block;
    font-size: 13px;
    border-bottom: 1px solid #222;
}

#primary-menu li ul li a:hover {
    color: #fff;
    background-color: #333;
}

/* --- 6. "Request a Quote" Button (Header) --- */
.quote-btn {
    background-color: #2c3e50;
    background-image: none;
    color: #fff;
    padding: 0 25px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    transition: background 0.2s;
    border: none;
    white-space: nowrap;
}

.quote-btn:hover {
    background-color: #1a252f;
}

/* NAV MOBILE ADJUSTMENTS */
@media (max-width: 900px) {
    .nav-container {
        height: auto; 
        min-height: 50px;
        flex-direction: column; /* Stack elements vertically */
        padding: 0;
    }
    
    .main-navigation {
        width: 100%;
        /* removed overflow-x: hidden to allow dropdowns to show/expand */
        overflow: visible;
        justify-content: center;
        height: auto;
        padding: 5px 0;
        position: relative; /* Anchor point for full-width dropdown */
    }

    /* GRID LAYOUT: 2 Rows of 4 (Assuming 8 items) */
    #primary-menu {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* Force 4 columns */
        gap: 0;
        width: 100%;
        height: auto;
    }

    #primary-menu > li {
        height: auto;
        width: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        border-bottom: 1px solid #111;
        border-right: 1px solid #111;
        /* Make LI static so the absolute UL references the .main-navigation container instead */
        position: static; 
        flex-direction: column; 
    }

    /* Reset some borders for cleaner look */
    #primary-menu > li:nth-child(4n) {
        border-right: none;
    }

    #primary-menu > li > a {
        padding: 12px 5px;
        font-size: 11px; /* Smaller font to fit 4 across */
        line-height: 1.2;
        height: 100%;
        width: 100%;
        text-align: center;
        justify-content: center;
        white-space: normal; /* Allow text wrapping if needed */
    }

    /* MOBILE DROPDOWN STYLE */
    #primary-menu li ul {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%; /* Positions it directly below the grid container (.main-navigation) */
        width: 100%;
        background-color: #1a1a1a; 
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        z-index: 2000; /* Ensure it sits on top of everything */
        border-top: 1px solid #333;
    }
    
    /* Show on Hover or Focus (Touch tap often triggers hover state) */
    #primary-menu li:hover > ul,
    #primary-menu li:focus-within > ul {
        display: block;
    }
    
    /* Position Button Below Grid */
    .quote-btn {
        width: 100%; 
        justify-content: center;
        padding: 15px;
        height: auto;
        margin-top: 0;
        border-top: 1px solid #333; /* Separator */
    }
}

/* --- 7. Main Content Wrapper --- */
#content {
    padding: 0 20px 40px 20px; 
    max-width: 1200px;
    margin: 0 auto;
    width: 100%; 
    flex: 1; 
}

/* --- 8. Footer --- */
.site-footer {
    background-color: #000; 
    color: #ccc; 
    font-size: 0.95rem;
    width: 100%;
    border-top: 1px solid #222; 
    margin-top: auto; 
}

.main-footer-container {
    max-width: 1400px; 
    margin: 0 auto;
    padding: 50px 30px; 
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between; 
    gap: 40px; 
}

.footer-col {
    flex: 1; 
    min-width: 280px; 
}

.footer-col-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-col-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-heading {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 25px;
    text-transform: uppercase;
    border-bottom: 1px solid #333;
    padding-bottom: 12px;
    display: inline-block;
}

.footer-logo {
    width: 260px; 
    height: auto;
    margin-bottom: 20px;
}

.footer-desc {
    line-height: 1.7;
    color: #999;
    max-width: 95%; 
}

.footer-links {
    text-align: center;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px; 
}

.footer-contact-row {
    display: flex;
    align-items: flex-start; 
    margin-bottom: 18px; 
    gap: 12px;
}

.footer-contact-row .icon {
    color: #2c3e50; 
    margin-top: 3px; 
    flex-shrink: 0; 
}

.info-text {
    color: #ccc;
    line-height: 1.6;
}

.info-text b {
    color: #fff;
    font-size: 0.95rem;
    margin-right: 5px;
}

.info-text a:hover {
    color: #fff;
    text-decoration: underline;
}

.site-info {
    background-color: #111; 
    color: #666;
    text-align: center;
    padding: 20px 0; 
    font-size: 0.85rem;
    border-top: 1px solid #222;
}

/* --- 9. Quote Page & Location Page Styles --- */
.location-page-container,
.quote-page-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.location-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 30px;
    text-align: center;
}

.address-box h2 {
    margin-top: 0;
    color: #2c3e50;
}

.address-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #555;
}

.directions-btn {
    display: inline-block;
    background-color: #2c3e50;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 30px;
    transition: background 0.3s;
    cursor: pointer;
}

.directions-btn:hover {
    background-color: #1a252f;
}

.map-container {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.quote-layout {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.quote-column-left {
    flex: 2; 
    background-color: rgba(255, 255, 255, 0.7); 
    padding: 30px;
    border-radius: 2px;
    border: 1px solid rgba(0,0,0,0.05);
}

.form-intro {
    margin-bottom: 20px;
    font-weight: 400;
    color: #555;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500; 
    color: #333;
}

.form-group .req {
    color: #d9534f;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-family: inherit;
    font-weight: 400;
    font-size: 1rem;
    box-sizing: border-box; 
}

.submit-quote-btn {
    background-color: #2c3e50;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 2px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
}

.submit-quote-btn:hover {
    background-color: #1a252f;
}

.field-website-trap {
    /* UPDATED: We use opacity to hide it from humans but keep it "visible" in the DOM for bots */
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

#quote-success-message,
#contact-success-message {
    text-align: center;
    padding: 40px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 2px;
}

.success-icon {
    font-size: 50px;
    color: #28a745;
    margin-bottom: 20px;
}

.urgent-note {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #d9534f;
}

.quote-column-right {
    flex: 1; 
}

/* --- 10. Homepage Styles --- */
.home-hero,
.hero-cta-bar,
.home-service-banner,
.home-why-us,
.home-products {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}

/* 1. Hero Section */
.home-hero {
    background-color: #2c3e50;
    background-image: none;
    color: #fff;
    padding: 80px 0 0 0; 
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
}

.hero-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
}

.hero-text-left {
    max-width: 100%;
    text-align: center;
}

.hero-text-left h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
    white-space: normal;
}

.hero-text-left p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #ccc;
    max-width: 800px; 
    margin: 0 auto;
}

.hero-text-left p strong {
    color: #fff; 
}

/* 2. CTA Bar */
.hero-cta-bar {
    background-color: #000;
    padding: 0; 
    margin-top: 50px;
}

.cta-inner-container {
    max-width: 1400px; 
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px; 
    height: auto;
    gap: 20px;
}

.min-order-text {
    font-weight: 700;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-big-btn {
    background-color: #727272; 
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 40px;
    height: auto;
    display: inline-block;
    transition: background 0.3s;
    margin-right: 0; 
}

.hero-big-btn:hover {
    background-color: #555;
}

/* NEW SECTION: Service Info Banner */
.home-service-banner {
    background-color: #727272; 
    border-bottom: 1px solid #555; 
    padding: 40px 20px;
}

/* UPDATED GRID FOR 4 ITEMS IN ONE ROW */
.service-info-grid {
    display: grid;
    /* Force 4 equal columns on desktop */
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
    align-items: flex-start;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 10px;
}

.service-icon {
    flex-shrink: 0;
    color: #fff;
    padding-top: 5px;
}

.service-text h4 {
    margin: 0 0 5px 0;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-text p {
    margin: 0 0 5px 0;
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.service-text .highlight-text {
    font-weight: 600;
    color: #fff;
}

.service-link {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}

.service-link:hover {
    text-decoration: none;
    color: #e0e0e0;
}

/* 3. Why Us Section */
.home-why-us {
    background-color: #fff;
    padding: 80px 20px;
    border-bottom: 1px solid #eee;
}

.container-width {
    max-width: 1200px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px; 
}

.why-card {
    text-align: left;
    padding: 20px;
}

.identifier-line {
    width: 50px;
    height: 4px;
    background-color: #2c3e50;
    margin-bottom: 20px;
}

.why-card h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 0;
}

.why-card p {
    color: #666;
    line-height: 1.6;
}

/* 4. Products Section */
.home-products {
    background-color: #f4f4f4;
    padding: 80px 20px;
}

.home-products .section-title,
.home-products .section-subtitle,
.home-products .product-grid,
.home-products .view-all-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px; 
}

.product-card {
    background: #fff;
    padding: 30px;
    border-radius: 4px; 
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid transparent;
    display: block; 
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #ccc;
}

.product-card h4 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 15px;
}

.product-card ul {
    list-style: disc;
    padding-left: 20px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    font-weight: 700;
    color: #2c3e50;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.highlight-card {
    background-color: #2c3e50;
}
.highlight-card h4, 
.highlight-card p, 
.highlight-card .read-more {
    color: #fff;
}

.view-all-container {
    text-align: center;
    margin-top: 50px;
}

.btn-view-all {
    display: inline-block;
    padding: 15px 40px;
    background-color: #727272;
    color: #fff;
    font-weight: 700;
    border-radius: 4px;
    transition: background 0.3s;
}
.btn-view-all:hover {
    background-color: #555;
}

/* Quote Section */
.home-quote-section {
    background-color: #fff;
    padding: 80px 20px;
    border-top: 1px solid #ddd;
}

.form-title {
    text-align: center;
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.home-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 4px;
    border: 1px solid #eee;
}

.form-row-2 {
    display: flex;
    gap: 20px;
}
.form-row-2 .form-group {
    flex: 1;
}

.home-submit-btn {
    width: 100%;
    background-color: #2c3e50;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
}

.home-submit-btn:hover {
    background-color: #1a252f;
}

#home-quote-success {
    text-align: center;
}
#home-quote-success h3 {
    color: #2c3e50;
    margin: 10px 0;
}

/* --- 11. Contact Us Page --- */

.page-contact-basic {
    padding: 60px 20px;
    width: 100%; 
}

.contact-central-column {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.contact-page-title {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin: 0 0 20px 0;
    /* Updated for Center alignment */
    text-align: center;
    line-height: 1.2;
}

.contact-toggle-wrapper {
    margin-bottom: 20px;
    display: flex;
    /* Updated for Center alignment */
    justify-content: center;
}

.contact-toggle-container {
    background: #e0e0e0;
    padding: 4px;
    border-radius: 4px;
    display: inline-flex;
    gap: 4px;
}

.toggle-btn {
    background: transparent;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 700;
    color: #666;
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.toggle-btn.active {
    background: #fff;
    color: #2c3e50;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.contact-form-wrapper {
    background-color: rgba(255, 255, 255, 0.85); 
    padding: 40px;
    border-radius: 2px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    width: 100%;
    box-sizing: border-box;
}

.form-title-text {
    margin-bottom: 25px;
    font-weight: bold;
    color: #2c3e50;
    font-size: 1.3rem;
    border-bottom: 2px solid #f4f4f4;
    padding-bottom: 10px;
    /* Added to center the "General Inquiry" etc. text */
    text-align: center;
}

.btn-contact-submit {
    background-color: #2c3e50;
    color: #fff !important;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 2px;
    cursor: pointer;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn-contact-submit:hover { 
    background-color: #1a252f; 
}

.contact-map-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.map-container-wide {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 100%;
    border: 1px solid #ccc;
    height: 400px;
    background-color: #eee;
}

/* Responsive for Grids (Mobile < 600px) */
@media (max-width: 600px) {
    /* 1. Services: 2 rows of 2 */
    .service-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .service-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 5px;
    }
    .service-text h4 {
        font-size: 0.9rem;
    }
    .service-text p {
        font-size: 0.8rem;
    }

    /* 2. Why Us: Rows of 2 */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .why-card {
        padding: 10px;
    }
    .why-card h3 {
        font-size: 1rem;
    }
    .identifier-line {
        margin: 0 auto 10px auto; /* Center the line */
    }

    /* 3. Products: Rows of 2 */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .product-card {
        padding: 15px;
    }
    .product-card h4 {
        font-size: 1.1rem;
    }
    .read-more {
        font-size: 0.8rem;
    }

    /* 4. Center Index Page Elements */
    .hero-text-left {
        text-align: center;
    }
    .cta-inner-container {
        align-items: center; /* Centers the button and text */
        text-align: center;
    }
    .home-hero {
        padding-top: 40px;
    }
    .hero-text-left h1 {
        font-size: 2rem;
    }
}

/* Tablet Responsive */
@media (max-width: 991px) {
    /* Tablet: 2x2 grid for services if not covered by mobile */
    .service-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* KEY FIX: Remove main content padding so sections can be full width without hacks */
    #content {
        padding: 0;
        width: 100%;
        overflow-x: hidden; /* Prevent horizontal scrolling */
    }

    /* KEY FIX: Reset the "breakout" logic (100vw) on mobile. 
       Since #content has no padding, 100% width works naturally now. */
    .home-hero,
    .hero-cta-bar,
    .home-service-banner,
    .home-why-us,
    .home-products {
        width: 100%;
        left: auto;
        right: auto;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }
    
    /* Re-add padding to inner containers to keep text away from edge */
    .hero-content-wrapper,
    .container-width,
    .section-title,
    .section-subtitle,
    .product-grid,
    .view-all-container {
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
        box-sizing: border-box; 
    }
    
    .hero-content-wrapper {
        padding: 0 20px; 
    }
    
    .cta-inner-container {
        width: 100%;
        box-sizing: border-box;
    }

    .hero-text-left h1 {
        font-size: 2rem;
    }
    .cta-inner-container {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 15px;
        text-align: center;
    }
    .hero-big-btn {
        width: 100%;
        margin-right: 0;
        justify-content: center;
        padding: 15px;
    }
    
    .contact-page-title {
        font-size: 2rem;
        text-align: center; 
    }
    .contact-toggle-wrapper {
        justify-content: center; 
    }
    .contact-form-wrapper {
        padding: 20px;
    }
}