     /* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

    .header {
        background-color: #003366;
        color: white;
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }
.header .logo {
        font-size: 1.5em;
    }

    .header a {
        color: white !important;
        text-decoration: none !important;
        margin: 0 15px;
        font-size: 1.3em !important;
    }

    .header a:hover {
        text-decoration: underline;
    }

    /* Footer Section */
    .footer {
        background-color: #003366;
        color: white;
        text-align: center;
        padding: 15px 20px;
    }

    @media (max-width: 768px) {
        .hero h1 {
            font-size: 2.5em;
        }

        .hero p {
            font-size: 1em;
        }

        .container {
            flex-direction: column;
            align-items: center;
        }

        .blog-box {
            width: 80%;
        }

        .header a {
            font-size: 1em;
            margin: 0 10px;
        }
    }

    @media (max-width: 480px) {
        .header {
            flex-direction: column;
            align-items: flex-start;
        }

        .header a {
            margin: 5px 0;
        }

        .hero h1 {
            font-size: 2em;
        }

        .hero p {
            font-size: 0.9em;
        }

        .hero a {
            padding: 10px 20px;
            font-size: 1em;
        }
    }

/* Footer Links Styling */
.footer-links {
        text-align: center;      /* Center align the links */
        margin-top: 20px;        /* Add spacing from the form */
        font-size: 0.9em;        /* Slightly smaller font */
        color: #555;             /* Subtle grey color */
}

.footer-links a {
    color: white;     /* Link color */
        text-decoration: none;   /* Remove underline */
        margin: 0 10px;          /* Space between links */
}

.footer-links a:hover {
        text-decoration: underline; /* Add underline on hover */
        color: #003366;            /* Highlight hover color */
}

/* Footer Links Styling */
.footer-links {
        text-align: center;      /* Center align the links */
        margin-top: 20px;        /* Add spacing from the form */
        font-size: 0.9em;        /* Slightly smaller font */
        color: #555;             /* Subtle grey color */
}

.footer-links a {
    color: white;     /* Link color */
        text-decoration: none;   /* Remove underline */
        margin: 0 10px;          /* Space between links */
}

.footer-links a:hover {
        text-decoration: underline; /* Add underline on hover */
        color: #003366;            /* Highlight hover color */
}

    .header a {
        color: white;
        text-decoration: none;
        margin: 0 15px;
        font-size: 1.2em;
    }

    .header a:hover {
        text-decoration: underline;
    }

    .hero {
        background-image: url('/static/images/aboutimgbanner(3).jpg');
        background-size: cover;
        background-position: center;
        height: 80vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        position: relative;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.05);
        z-index: 0;
    }

    .hero h1 {
        font-size: 3em;
        margin: 0;
        z-index: 1;
    }

    .hero p {
        font-size: 1.2em;
        z-index: 1;
    }

    .hero a {
        margin-top: 20px;
        padding: 15px 30px;
        background-color: #003366;
        color: white;
        font-size: 1.2em;
        text-decoration: none;
        border-radius: 5px;
        z-index: 1;
        transition: background-color 0.3s ease;
    }

    .hero a:hover {
        background-color: #d0e0f5;
        color: #003366;
    }

    .container {
        width: 80%;
        margin: 3rem auto;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .blog-box {
        width: 30%;
        margin-bottom: 2rem;
        background-color: white;
        padding: 1.5rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

    .blog-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .blog-box img {
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
    }

    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.4);
    }

    .modal-content {
        background-color: #fff;
        margin: 10% auto;
        padding: 20px;
        width: 60%;
        border-radius: 8px;
    }

    .close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
    }

    .close:hover {
        color: black;
        cursor: pointer;
    }

/*----------------------------
    About Section - Improved
----------------------------*/
.about {
    width: 100vw; /* Ensures it takes up the full viewport width */
    background-color: #f4f4f4; /* Replace with your desired grey */
    padding: 80px 0; /* Increased padding for more vertical space */
}

/* General container adjustments */
.about-section {
    display: flex !important;
    justify-content: space-evenly !important; /* Ensures spacing between sections */
    align-items: center;
    gap: 40px; /* Reduce space between sections */
    grid-template-columns: 1fr 1fr; /* Splits into two equal sections */
    column-gap: 100px !important; /* Adjust space between left and right */
    flex-direction: row;
    align-items: flex-start; /* Aligns items to the top */
    flex-wrap: wrap; /* Prevents content from overflowing */
    padding: 20px 0; /* Adds spacing above and below */
    margin-left:5px;
    margin-top:30px;
    margin-bottom:30px;
}

/* Left Section (Mission Statement) */
.mission-text {
    flex: 1;
    width: 50% !important;  /* Controls left section width */
    margin-left: 100px !important; /* Forces space to the right */

}

/* Right Section (Icons & Text) */
.why-constructhub {
    flex: 1;
    max-width: 80%;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 60px; /* Spacing between items */
    text-align: left;
}

.why-constructhub .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-constructhub .feature img {
    width: 80px; /* Make icons larger */
    height: auto;
    margin-bottom: 15px;
}

.why-constructhub .feature h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-constructhub .feature p {
    font-size: 1rem;
    line-height: 1.4;
    color: #333;
    max-width: 80%;
}

/* Container Wrapper */
.why-container {
    max-width: 1200px; /* Centered max width */
    text-align: center;
}

/* Section Title */
.why-container h2 {
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #888; /* Light grey */
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* Grid for Content */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two equal columns */
    gap: 60px 100px; /* Adjust spacing */
    text-align: center;
    max-width: 900px;
    justify-content: center;
}

/* Individual Item */
.why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Icon Styling */
.why-item img {
    width: 80px; /* Make icons slightly larger */
    height: auto;
    margin-bottom: 15px; /* Space between icon and heading */
}

/* Headings */
.why-item h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000; /* Ensure text stands out */
}

/* Paragraph Text */
.why-item p {
    font-size: 1.5px;
    color: #666;
    max-width: 320px;
    line-height: 1.6;
}

/* Left Side - Title and Mission */
.about-left {
    width: 50%;
}

.about-left h1 {
    font-size: 3rem; /* Increase title size */
    font-weight: bold;
    line-height: 1.2;
}

.about-left p {
    font-size: 1.2rem; /* Increase paragraph size */
    line-height: 1.6;
    color: #333; /* Darker text for readability */
}

/* Right Side - Why ConstructHUB */
.about-right {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Mission Section */
.mission-section {
    width: 100%;
    background-color: #f4f4f4;
    padding: 60px 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Flex container for left and right sections */
.mission-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Left side: Mission Text */
.mission-text {
    flex: 1;
    max-width: 45%;
    margin-left: 100px;
}

.mission-text h1 {
    font-family: 'Open Sans', Arial, sans-serif; /* Ensure consistency */
    font-size: 2rem; /* Increase size */
    font-weight: 250; /* Bolder text */
    line-height: 1.5; /* Improve readability */
    color: black;
    margin-left:
}

.mission-text h4 {
    font-size: 1.5rem;
    letter-spacing: 4px;
    font-weight: 100;
    text-transform: uppercase;
    color: black;
}

/* Right side: Features */
.mission-features {
    flex: 1;
    width: 50% !important; /* Controls right section width */
    margin-left: 5px !important; /* Forces space to the left */
}

/* Right side: Features */
.mission-features {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 60px;

}

.mission-features h4 {
    padding-bottom: 30px;
    font-size: 20px; /* Adjust the size as needed */
    color: black;  /* Change to your preferred color */
    font-weight: 50; /* Optional: Make it bold */
    text-transform: uppercase; /* Optional: Keep it uppercase */
}

/* Grid Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    justify-content: center;
    align-items: start;
    text-align: center;
}

/* Feature Item */
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

/* Icons */
.feature-item img {
    width: 120px;  /* Ensures consistent size */
    height: auto;
    margin-bottom: 15px;
}

/* Feature Titles */
.feature-item h3 {
    font-size: 2.5rem;
    color: black;
    font-weight: 200;
    margin-bottom: 5px;
}

/* Feature Descriptions */
.feature-item p {
    font-size: 1.5rem;
    color: #333;
    max-width: 90%;
    text-align: left;
    padding: 0px;
}

.mission {
    flex: 1;
    padding-right: 50px;
}

.mission h3 {
    font-size: 14px;
    letter-spacing: 2px;
    color: #888;
}

.mission h1 {
    font-size: 36px;
    font-weight: bold;
    color: #000;
    line-height: 1.2;
}

.why-us {
    flex: 1;
}

.feature-text {
    max-width: 70%;
}

.why-us h3 {
    font-size: 14px;
    letter-spacing: 2px;
    color: #888;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* Individual Feature Blocks */
.feature {
    width: 45%; /* Ensures two items per row */
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature img {
    width: 50px; /* Adjust size of icons */
    height: 50px;
    margin-right: 15px; /* Space between icon and text */
}

.feature-text h3 {
    font-size: 1.2rem; /* Make titles bigger */
    font-weight: bold;
}

.feature h4 {
    font-size: 18px;
    color: #000;
    margin: 0;
}

.feature-text p {
    font-size: 1rem; /* Increase readability */
    line-height: 1.4;
    color: #555;
}

/* Responsive Design */
@media (max-width: 900px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-left, .about-right {
        width: 100%;
    }

    .about-right {
        justify-content: center;
    }
    
    .mission {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .feature {
        flex-direction: column;
        text-align: left;
    }
}

/* About Section Title */
.titlepage {
    max-width: 1200px; /* Ensures text doesn't stretch across too wide */
    margin: 0 auto; /* Centers the text */
    padding: 0 40px; /* Adds 40px padding to both left and right */
    text-align: center; /* Keeps title & paragraph centered */
}

.about .titlepage h2 {
    padding: 0 0 6px 0;
    font-size: 40px;
    font-weight: bold;
    color: #050303;
    line-height: 46px;
    border-bottom: #fc4311 solid 2px;
    display: inline-block;
}

/* About Section Content */
.about .about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-direction: row;
    max-width: 1200px; /* Adjust this based on your layout */
    margin: 0 auto; /* Centers the content */
    padding: 0 20px; /* Adds small padding for responsiveness */
}

/* Text Content */
.about .about-box {
    max-width: 50%;
    padding: 20px;
    text-align: left; /* Ensures left-aligned text */
}

.about .about-box h3 {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about .about-box p {
    font-size: 16px;
    line-height: 26px;
    color: #333;
}

/* Image Styling */
.about .about-img {
    max-width: 50%;
    flex-shrink: 0;
    text-align: right; /* Aligns image to the right */
}

.about .about-img img {
    width: 100%;
    border-radius: 8px; /* Optional for rounded corners */
    display: block;
}

/* Read More Button */
.about a {
    text-transform: uppercase;
    border: #000 solid 1px;
    background: #000;
    width: 180px;
    padding: 12px 0;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    color: #fff;
    display: block;
    margin-top: 30px;
    transition: 0.3s ease-in-out;
}

.about a:hover {
    background: #fc4311;
    border-color: #fc4311;
    border-radius: 25px;
}

.about li {
    margin-left: 20px; /* Moves list items further in */
}





/*----------------------------------------
  6.Faq Area
----------------------------------------*/

.faq-container {
    display: flex;
    justify-content: center; /* Keep FAQ and Tabs centered */
    align-items: flex-start;
    gap: 50px;
    max-width: 1100px; /* Set max width */
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap; /* Ensures responsiveness */
    text-align: center;
}

.faq-details {
    flex: 1;
    min-width: 450px; /* Ensures FAQ section has enough width */
    max-width: 500px;
    width: 50%;
}

.faq-left {
    width: 45%; /* Adjust width for better spacing */
}

/* Right Section - Tabbed Content */
.faq-right {
    width: 50%; /* Makes the tabbed section take half of the space */
}

.accordion,
.tab-content {
    width: 100%;
}

.section-headline {
    text-align: center; /* Ensures heading stays centered */
    width: 100%;
    margin-bottom: 30px;
}

.faq-details, .tab-menu-container {
    flex: 1;
    min-width: 450px; /* Prevents them from being too narrow */
    max-width: 500px;
    width: 50%;
    text-align: left; /* Keep content aligned properly */
}

/* Bootstrap Accordion Fixes */
.accordion-button {
    font-size: 16px;
    font-weight: bold;
    padding: 15px;
    background-color: #f9f9f9;
    border: none;
}

.tab-menu-container {
    flex: 1;
    min-width: 450px;
    max-width: 500px;
    width: 50%;
}

/* Style tab navigation */
.nav-tabs {
    display: flex;
    justify-content: flex-start; /* Aligns tabs to the left */
    border-bottom: 2px solid #ddd;
    padding-left: 0px; /* Adjust as needed */
}

.nav-tabs .nav-link {
    font-size: 16px;
    font-weight: bold;
    color: #444;
    padding: 10px 20px;
    transition: 0.3s;
}

.nav-tabs .nav-link.active {
    color: #3EC1D5;
    border-bottom: 3px solid #3EC1D5;
}

/* Tab Content */
.tab-content {
    width: 100%; /* Ensure width matches FAQ section */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
}

/* Center FAQ Section */
.faq-area {
    text-align: center;
    padding-bottom: 50px;
}

/* Adjust overall spacing */
.faq-section {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    flex-direction: column; /* Stack elements on small screens */
    width: 100%;
    margin: 0 auto;
    padding: 50px 20px;
}


.accordion-button:hover {
    background-color: #eaeaea;
}

/* Change the expand/collapse icon */
.accordion-button::after {
    content: '+'; /* Use plus sign instead of chevron */
    font-size: 20px;
    font-weight: bold;
    transform: none !important;
    transition: none !important;
}

.accordion-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px; /* Increases spacing between FAQ items */
    background: #fff;
    overflow: hidden;
}

.accordion-button {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    font-size: 18px; /* Adjust size */
    font-weight: bold;
    padding: 15px 0; /* Add space */
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header {
    text-align: left;
}

.accordion-body {
    font-weight: normal; /* Ensures default text is normal */
    font-size: 14px;
    color: #333;
    padding: 15px;
}

.tab-container {
    width: 100%;
}

.nav-tabs {
    border-bottom: 2px solid #ddd;
}

.nav-tabs .nav-item {
    margin-right: 5px;
}

.nav-tabs .nav-link {
    color: #444;
    font-weight: bold;
    border: none;
    padding: 12px 20px;
}

.nav-tabs .nav-link.active {
    color: #3EC1D5;
    border-bottom: 3px solid #3EC1D5;
    background-color: #fff;
}

.tab-content {
    border: 1px solid #ddd;
    padding: 20px;
    margin-top: -1px;
    background: #fff;
    border-radius: 5px;
}

.tab-pane h3 {
    margin-top: 0;
    font-size: 20px;
    font-weight: bold;
}

.tab-pane p {
    font-size: 14px;
    color: #555;
}

.faq-details .panel-heading {
  padding: 0;
}

.panel-default>.panel-heading {
  background-color: transparent;
  border: medium none;
  color: #333;
}

.faq-details h4.check-title a {
  color: #333;
  display: block;
  font-weight: 700;
  letter-spacing: 2px;
  margin-left: 40px;
  padding: 6px 10px;
  text-decoration: none;
}

.panel-body {
  padding: 15px 15px 0px 50px;
}

.faq-details h4.check-title {
  color: #444;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}

.faq-details a span.acc-icons {
  position: relative;
}

.faq-details a span.acc-icons::before {
  color: #333;
  content: "";
  font-family: fontawesome;
  font-size: 24px;
  height: 40px;
  left: -51px;
  line-height: 39px;
  position: absolute;
  text-align: center;
  top: -10px;
  width: 42px;
}

.faq-details h4.check-title a.active, .faq-details a.active span.acc-icons::before {
  color: #3EC1D5;
}

.faq-details a.active span.acc-icons::before {
  content: "";
  font-family: fontawesome;
  font-size: 24px;
  height: 40px;
  left: -51px;
  line-height: 39px;
  position: absolute;
  text-align: center;
  top: -10px;
  width: 42px;
}

.second-row {
  margin-top: 30px;
}

.event-content.head-team h4 {
  background: transparent none repeat scroll 0 0;
  color: #333;
  padding: 30px 0 10px;
  font-weight: 500;
  text-transform: capitalize;
}

.tab-menu .nav-tabs>li>a:hover {
  border-color: #eee #eee #ddd;
}

.tab-menu {
  display: block;
  text-align: center;
}

.tab-menu ul.nav {
  margin: 0;
  padding: 0;
}

.tab-menu ul.nav li {
  border: medium none;
  display: inline-block;
}

.tab-content {
  border: 1px solid #ccc;
  padding: 0 15px 15px;
}

.tab-menu ul.nav li a {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border-radius: 0;
  color: #444;
  display: block;
  font-weight: 500;
  margin-right: 5px;
  padding: 10px 20px;
  font-family: raleway;
  font-size: 18px;
}

.tab-menu ul li.active a, .tab-menu ul li.hover a, .tab-menu ul li.focus a {
  border-bottom: 1px solid #fff;
  color: #3EC1D5 !important;
}

.tab-menu .nav-tabs {
  border-bottom: none;
}

.tab-main-img a {
  position: relative;
  display: block;
}

.tab-main-img a:hover span.events-offer {
  height: 20%;
}

.tab-main-img a span.events-offer {
  background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
  bottom: 0;
  color: #fff;
  content: "";
  font-size: 20px;
  font-weight: 700;
  height: 0%;
  left: 0;
  line-height: 70px;
  padding: 0;
  position: absolute;
  text-align: left;
  transition: all 0.5s ease 0s;
  width: 100%;
  padding: 0px 10px;
}

/* Background Section */
.legacy-section {
    background-image: url('/static/aboutimg.jpg');
    background-size: cover;
    background-position: center top; /* Moves focus to the upper part */
    height: 80;
    position: relative;
    width: 100%;
    height: 90vh; /* Adjust height as needed */
    display: flex;
    align-items: center;
    padding: 5px;
}

.legacy-content {

    position: relative;
    z-index: 2; /* Make sure text appears above */
}

.legacy-content h4,
.legacy-content h1,
.legacy-content p {
    color: white !important;
    background-color: transparent !important;
}



.legacy-content h4 {
    color: #E0E0E0; /* Light grey for subtitle */
    text-transform: uppercase; /* Keeps 'IT’S DEEPER THAN ROOTS' styled */
    letter-spacing: 1px;
}

.legacy-content h1 {
    color: #FFFFFF; /* Bright white for "Our Legacy" */
    font-weight: bold;
}

.legacy-content p {
    color: #D0D0D0; /* Soft white for paragraph text */
    line-height: 1.6; /* Improves readability */
}


/* Dark Overlay for Readability */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Adjust opacity */
    top: 0;
    left: 0;
    z-index: 1; /* Keep it below */
}

/* Red Line for Legacy Section */
.legacy-section .red-line {
    width: 8px;
    height: 90%; /* Reduce size */
    background: red;
    position: absolute;
    left: 5px;
    top: 10%;
}

/* Content Wrapper */
.legacy-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 5%; /* Adjusts with screen */
    max-width: 40vw; /* Prevents stretching, adjusts with width */
}

/* Content Wrapper */
.content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: Left;
    padding-left: 30px; /* Increased left padding */
    max-width: 700px; /* Prevent text from stretching */
}


/* Text Box Styling */
.text-box {
    max-width: 600px;
}

.text-box h4 {
    font-size: 14px;
    letter-spacing: 2px;
    color: #ccc;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.text-box h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
}

.text-box p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 900px) {
    .legacy-section {
        padding: 40px;
        height: auto;
    }
    
    .content {
        flex-direction: column;
        text-align: left;
    }
    
}

/* Social Responsibility Section */
.responsibility {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 80px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}



/* Left Side */
.responsibility-left {
    flex: 1;
    min-width: 500px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px; /* Ensure some space between sections */
}

.responsibility-left p {
    color: #333333; /* Darker gray for better readability */
    font-weight: normal;
}

/* Right Side (Initiatives Section) */
.responsibility-right {
    flex: 1;
    min-width: 500px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px; /* Adjust spacing */
    align-items: flex-start;
}

/* Ensure proper spacing for the accordion */
.responsibility-right .container {
    width: 100%;
    padding-left: 1px;
}

/* ENSURING RESPONSIVENESS */
@media (max-width: 1024px) {
    .responsibility-content {
        flex-direction: column;
    }

    .responsibility-left, .responsibility-right {
        max-width: 100%;
        text-align: center;
    }

    .red-line {
        display: none; /* Optional: Hide the red line on smaller screens */
    }
}

/* Layout */
.content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Left Section */
.left {
    display: flex;
    max-width: 50%;
    align-items: flex-start;
}

/* Red Vertical Line */
.red-line {
    width: 0px;
    height: 100%;
    background: red;
    margin-right: 20px;
}

/* Text Content */
.text-box {
    max-width: 600px;
}

.text-box h4 {
    font-size: 14px;
    letter-spacing: 2px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.text-box h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.text-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* CTA Button */
.cta-button {
    background: red;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

.cta-button:hover {
    background: darkred;
}

/* Right Section (Accordion) */
.right {
    max-width: 40%;
}

.right h4 {
    font-size: 14px;
    letter-spacing: 2px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Accordion Styling */
.accordion {
    width: 100%;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-btn {
    width: 100%;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    padding: 15px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-btn span {
    font-size: 22px;
    font-weight: bold;
}

.accordion-content {
    display: none;
    padding: 15px;
    font-size: 16px;
    color: #555;
}

/* Responsive */
@media (max-width: 900px) {
    .content {
        flex-direction: column;
    }

    .left, .right {
        max-width: 100%;
    }

    .red-line {
        height: 5px;
        width: 60px;
        margin-bottom: 10px;
    }
}