/* Global Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1d4ed8;
    --accent-color: #10b981;
    --light-color: #f3f4f6;
    --dark-color: #111827;
    --text-color: #f9fafb;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #000;
}

 .data-container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
} 

h1, h2, h3 {
    margin-bottom: 20px;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

p {
    margin-bottom: 15px;
}

section {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

i {
    margin-right: 5px;
}
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
}


/* header {
    position: relative;
    z-index: 2;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(65, 246, 129, 0.1);
    transition: all 0.3s ease;
    padding: 18px 0;
    height: 120px; 
}

 */



 .navbar-nav .nav-item .talk_btn {
    background: linear-gradient(90deg, #4461F2 0%, #41F68A 100%);
    padding: 7px 20px !important;
    border-radius: 30px !important;
    color: #ffffff !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    /* gap: 10px; */
     font-size: 16px;
    margin-left: auto;
} 





.sub-banner-section-outer {
    position: relative;
    background-color: var(--e-global-color-black);
    overflow: hidden;
}

.sub-banner-section-outer .banner-section {
    position: relative;
    padding: 132px 0 120px;
    z-index: 1;
    height: 550px;
    display: flex;
    align-items: center;
}

.sub-banner-section-outer .banner_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sub-banner-section-outer .banner_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-banner-section-outer .banner-section-content {
    position: relative;
    z-index: 3;
}

.sub-banner-section-outer .btn_wrapper {
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    color: var(--e-global-color-white);
}



/* Commitment Section */
/* .commitment-section {
    text-align: center;
}

.progress-container {
    margin: 20px auto;
    width: 80%;
    max-width: 500px;
}

.progress-bar {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    height: 25px;
    overflow: hidden;
}

.progress {
    background-color: var(--accent-color);
    height: 100%;
    width:100%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--dark-color);
    transition: var(--transition);
} */



    

/* Control Section */
.control-section {
    text-align: center;
}

.control-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.control-item {
    background-color: var(--accent-color);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    box-shadow: var(--box-shadow);
}

.control-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Data Collection Section */
.data-collection-section {
    text-align: center;
}

.data-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.data-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: var(--border-radius);
    width: 280px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.data-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
}

.data-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* Data Flow Section */
.data-flow-section {
    text-align: center;
}

.flow-chart {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

.flow-step {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    width: 150px;
}

.flow-step i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--accent-color);
}

/* Security Timeline Section */
.security-timeline-section {
    text-align: center;
}

.timeline {
    max-width: 600px;
    margin: 30px auto;
}

.timeline-item {
    background-color: var(--accent-color);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.timeline-item:hover {
    transform: translateX(10px);
}

.year {
    font-weight: 600;
    min-width: 60px;
    color: var(--dark-color);
}

.event {
    color: var(--dark-color);
    font-weight: 500;
}


/* FAQ Section */
.faq-section {
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 30px auto;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-question {
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-question i {
    transition: var(--transition);
}

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    text-align: left;
}

.faq-item.active .faq-answer {
    padding: 0 15px 15px;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Benefits Section */
.benefits {
    background-color: #000;
    padding: 80px 0;
}

.benefits .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefits-content {
    text-align: center;
    margin-bottom: 40px;
}

.benefits h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.benefits p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
}

.benefit-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border: 1px solid #dddddd;
    border-radius: 10px;
    margin: 20px;
    width: calc(33.33% - 20px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.benefit-card i {
    font-size: 24px;
    margin-bottom: 10px;
    color: #4CAF50;
}

.benefit-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #66cccc;
    margin-bottom: 10px;
}

.benefit-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #C7C5B8;
    margin-bottom: 20px;
}

.benefits button {
    background-color: #4CAF50;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0 auto;
    display: block;
}

.benefits button:hover {
    background-color: #3e8e41;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.footer a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    header {
        height: 100px; /* Reduce the header height on large screens */
    }
    .navbar-nav .nav-item .talk_btn {
        width: 120px; /* Reduce the button width on large screens */
    }
}

@media (max-width: 992px) {
    header {
        height: 80px; /* Reduce the header height on medium screens */
    }
    .navbar-nav .nav-item .talk_btn {
        width: 100px; /* Reduce the button width on medium screens */
    }
}
@media (max-width: 768px) {
    header {
        height: 60px; /* Reduce the header height on small screens */
    }
    .navbar-nav .nav-item .talk_btn {
        width: 80px; /* Reduce the button width on small screens */
    }
    .container {
        width: 90%;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .control-item, .data-item, .flow-step {
        width: 100%;
    }

    .banner-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    header {
        height: 50px; /* Reduce the header height on extra small screens */
    }
    .navbar-nav .nav-item .talk_btn {
        width: 60px; /* Reduce the button width on extra small screens */
    }

}  
/* Add these responsive styles for benefits section */
@media (max-width: 1200px) {
    .benefit-cards {
        gap: 20px;
    }
    .benefit-card {
        width: calc(50% - 40px);
        margin: 10px;
    }
}

@media (max-width: 992px) {
    .benefits h2 {
        font-size: 32px;
    }
    .benefits p {
        font-size: 16px;
    }
    .benefit-card {
        padding: 25px;
    }
    .benefit-card h3 {
        font-size: 16px;
    }
    .benefit-card p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .benefits {
        padding: 60px 0;
    }
    .benefit-card {
        width: calc(100% - 40px);
        margin: 10px 20px;
    }
    .benefits-content {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .benefits {
        padding: 40px 0;
    }
    .benefits h2 {
        font-size: 28px;
    }
    .benefits p {
        font-size: 14px;
    }
    .benefit-card {
        padding: 20px;
        margin: 10px;
        width: calc(100% - 20px);
    }
    .benefit-card i {
        font-size: 20px;
    }
}

   

/* Privileged Access Section */
.privileged-access {
    padding: 60px 5%;
    background-color: #000;
    color: #ffffff;
    font-family: 'Inter', sans-serif; 
}

.access-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
}

/* Left Section: Intro Text */
.access-intro {
    flex: 1;
    max-width: 40%;
}

.access-intro h2 {
    font-size: 36px; 
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
    line-height:1.3;
}
.access-intro p {
    font-size: 16px;  
    line-height: 1.6; 
    color: #cccccc;
    max-width: 100%; 
}

/* Resp

.explore-link {
    color:  #00d4ff; 
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

/* Right Section: Grid Layout */
.access-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr; 
    gap: 30px;
    max-width: 50%;
}

/* Grid Card Styling */
.access-item {
    background: #111;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.2); 
    color: #ffffff;
    transition: transform 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.access-item img {
    width: 40px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1); 
}

.access-item h3 {
    font-size: 22px; 
    font-weight: 600;
    margin-bottom: 10px;
    color:#00d4ff; 
}

.new-label {
    background: #4CAF50;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
}

.access-item p {
    font-size: 15px;
    color: #cccccc;
}

.access-item:hover {
    transform: scale(1.05); 

}
.security-icon {
    font-size: 55px;  
    color: #00ffcc;  
    margin-bottom: 15px; 
}

.access-link {
    text-decoration: none; 
}

.access-link h3,
.access-link .security-icon {
    text-decoration: none; 
}

.access-link:hover {
    text-decoration: none;
}



/* Responsive Adjustments */
@media (min-width: 1025px) {
    .access-grid {
        grid-template-columns: 1fr 1fr; /* 2 columns for larger screens */
    }
    
}

@media (max-width: 1024px) {
    .access-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .access-intro {
        max-width: 100%;
    }
    .access-grid {
        max-width: 100%;
        grid-template-columns: 1fr 1fr; /* Keeps two columns */
    }
    .access-intro h2 {
        font-size: 30px; /* Reduce font size for tablets */
    }
}

@media (max-width: 768px) {
    .access-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
    }
    .access-intro h2 {
        font-size: 26px; /* Reduce further for smaller screens */
    }
    .access-intro p {
        font-size: 14px; /* Reduce size for smaller screens */
        line-height: 1.5; /* Slightly tighter spacing */
    }
}
@media (max-width: 480px) {
    .access-intro h2 {
        font-size: 22px; /* Optimize for mobile screens */
    }
    .access-intro p {
        font-size: 13px; /* Further reduce for mobile */
    }
}






























 /* data security section */

  .data-security {
    background-color: #000; 
    color: #ffffff;
    padding: 80px 5%;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.data-security .data-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left; 
    padding-left: 0; 
}

.data-security h2 {
    font-size: 36px;
    font-weight: 600;
    color:  var(--accent-color);
    margin-bottom: 10px;
    text-align: left;   
}

.data-security .description {
    font-size: 18px;
    color: #cccccc;
    max-width: 100%;
    text-align: left;
    margin-bottom: 30px;  
}

.data-security .content {
    background: #000; 
    padding: 40px 0;
    border-radius: 10px;
    box-shadow: none; 
    text-align: left;
    max-width: 100%;
    margin: 0 auto;
}
.data-security h2,
.data-security .description,
.data-security h3,
.data-security p {
    text-align: left;
    margin-left: 0; /* Ensure alignment */
    padding-left: 0;
}

.data-security h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 20px;
}

.data-security p, .data-security ul {
    font-size: 16px;
    color: #c7c5b8;
    line-height: 1.6;
}

.data-security ul {
    padding-left: 20px;
}

.data-security ul li {
    margin-bottom: 10px;
}


.data-security h3:hover {
    color: #4CAF50;
    transition: 0.3s ease-in-out;
}

.data-security p:hover {
    color: #ffffff;
    transition: 0.3s ease-in-out;
}


@media (max-width: 1024px) {
    .data-security .content {
        padding: 30px;
    }
    .data-security h2 {
        font-size: 32px;
    }
    .data-security h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .data-security {
        padding: 60px 5%;
    }
    .data-security h2 {
        font-size: 28px;
    }
    .data-security p {
        font-size: 14px;
    }
    .data-security .content {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .data-security {
        padding: 50px 5%;
    }
    .data-security h2 {
        font-size: 26px;
    }
    .data-security p {
        font-size: 14px;
    }
    .data-security .content {
        padding: 15px;
    }
}

/* privacy & trust section  */
.privacy-trust {
    background-color: #000; 
    color: #ffffff;
    padding: 80px 5%;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.privacy-trust .data-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    padding-left:0;  
}

.privacy-trust h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-align: left;  
}

.privacy-trust .description {
    font-size: 18px;
    color: #cccccc;
    max-width: 100%;
    text-align: left;
    margin-bottom: 30px;  
}

.privacy-trust .content {
    background: #000; 
    padding: 40px 0;
    border-radius: 10px;
    box-shadow: none; 
    text-align: left;
    max-width: 100%;
    margin: 0 auto;
}
.data-trust h2,
.data-trust .description,
.data-trust h3,
.data-trust p {
    text-align: left;
    margin-left: 0; /* Ensure alignment */
    padding-left: 0;
}

.privacy-trust h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 20px;
}

.privacy-trust p, .privacy-trust ul {
    font-size: 16px;
    color: #c7c5b8;
    line-height: 1.6;
}

.privacy-trust ul {
    padding-left: 20px;
}

.privacy-trust ul li {
    margin-bottom: 10px;
}

.privacy-trust h3:hover {
    color: #4CAF50;
    transition: 0.3s ease-in-out;
}

.privacy-trust p:hover {
    color: #ffffff;
    transition: 0.3s ease-in-out;
}

@media (max-width: 1024px) {
    .privacy-trust .content {
        padding: 30px;
    }
    .privacy-trust h2 {
        font-size: 32px;
    }
    .privacy-trust h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .privacy-trust {
        padding: 60px 5%;
    }
    .privacy-trust h2 {
        font-size: 28px;
    }
    .privacy-trust p {
        font-size: 14px;
    }
    .privacy-trust .content {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .privacy-trust {
        padding: 50px 5%;
    }
    .privacy-trust h2 {
        font-size: 26px;
    }
    .privacy-trust p {
        font-size: 14px;
    }
    .privacy-trust .content {
        padding: 15px;
    }
}

.data-governance {
    background-color: #000; 
    color: #ffffff;
    padding: 80px 5%;
    font-family: 'Inter', sans-serif;
}

.data-governance .data-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;  
    /* display: flex;
    flex-direction: column;
    align-items: flex-start;  */
    padding-left: 0;
}

.data-governance h2,
.data-governance .description,
.data-governance h3,
.data-governance p {
    text-align: left; /* Ensures all text is aligned */
    margin-left: 0; /* Remove any unintended margins */
    padding-left: 0; /* Ensures all text starts at the same point */
}

.data-governance h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.data-governance .description {
    font-size: 18px;
    color: #cccccc;
    max-width: 100%;
    margin-bottom: 30px;
}

.data-governance .content {
    background: #000; 
    padding: 40px 0;
    border-radius: 10px;
    box-shadow: none;
    text-align: left; 
    max-width: 100%;
    margin: 0 auto;
}

.data-governance h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 20px;
}

.data-governance p, 
.data-governance ul {
    font-size: 16px;
    color: #c7c5b8;
    line-height: 1.6;
    margin: 0;
}

.data-governance ul {
    padding-left: 20px;
}

.data-governance ul li {
    margin-bottom: 10px;
}

.data-governance h3:hover {
    color: #4CAF50;
    transition: 0.3s ease-in-out;
}

.data-governance p:hover {
    color: #ffffff;
    transition: 0.3s ease-in-out;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .data-governance .content {
        padding: 30px;
    }
    .data-governance h2 {
        font-size: 32px;
    }
    .data-governance h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .data-governance {
        padding: 60px 5%;
    }
    .data-governance h2 {
        font-size: 28px;
    }
    .data-governance p {
        font-size: 14px;
    }
    .data-governance .content {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .data-governance {
        padding: 50px 5%;
    }
    .data-governance h2 {
        font-size: 26px;
    }
    .data-governance p {
        font-size: 14px;
    }
    .data-governance .content {
        padding: 15px;
    }
}


/* Body Styling */
body {
    font-family: 'Inter', sans-serif;
    color: #E0E0E0;
    background: #000000;
    margin: 0;
    padding: 0;
}

/* Ensure the navbar does not overlap */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #000;
}

/* Compliance Header Section */
.compliance-header {
    background: #0d0d0d;
    color: #FFFFFF;
    text-align: center;
    display: flex;
    justify-content: center;
    height: 350px;
    margin-top: 0;
    padding-right: 80px;
}

/* Compliance Title */
.compliance-header h1 {
    font-size: 50px;
    font-weight: 700;
    margin: 0;
    color: #E0E0E0;
    padding-left: 50px;
}

/* Centering the Content */
.compliance-container {
    display: flex;
    justify-content: center;
    padding: 0px 50px 20px;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
}

/* Content Box */
.content-wrapper {
    max-width: 1100px;
    background: #000000;
    padding: 40px;
    border-radius: 8px;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    text-align: left;
    border: 1px solid #333;
    transition: all 0.3s ease-in-out;
}

/* Headings */
h2 {
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    margin-top: 20px;
    transition: color 0.3s ease-in-out;
}

/* Hover Effect for Headings */
h2:hover {
    color: #4CAF50;
}

/* Paragraphs */
p {
    font-size: 16px;
    line-height: 1.8;
    color: #CCCCCC;
    margin-bottom: 20px;
}

.compliance-container ul {
    padding-left: 20px;
    margin: 0;
}

.compliance-container ul li {
    list-style-type: disc;
    margin-left: 0;
    padding-left: 5px;
    line-height: 1.8;
}

.links_col ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
}

.image-wrapper img {
    max-width: 100%; /* Ensure image scales properly */
    height: auto;    /* Maintain aspect ratio */
    display: block;
    margin: 0 auto;  /* Center the image */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        width: 85%;
        padding: 35px;
    }

    .compliance-header {
        height: 300px;
        padding: 100px 15px;
        margin-top: 90px;
    }

    .compliance-header h1 {
        font-size: 42px;
        padding-left: 30px;
    }

    h2 {
        font-size: 22px;
    }

    p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .content-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .image-wrapper {
        width: 100%;
        text-align: center;
        margin-bottom: 20px; /* Add spacing between image and text */
    }

    .compliance-container {
        padding: 30px 15px;
    }

    .content-wrapper {
        width: 100%;
        padding: 20px;
    }

    .compliance-header {
        padding: 80px 15px;
        height: 250px;
        margin-top: 100px;
    }

    .compliance-header h1 {
        font-size: 34px;
        padding-left: 20px;
    }

    .text-content p {
        font-size: 14px;
        line-height: 1.6;
        text-align: justify; /* Ensure better text alignment */
    }

    h2 {
        font-size: 20px;
    }

    p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        width: 100%;
        padding: 20px;
    }

    .compliance-header {
        padding: 60px 10px;
        height: 220px;
        margin-top: 110px;
    }

    .compliance-header h1 {
        font-size: 30px;
        padding-left: 15px;
    }

    h2 {
        font-size: 18px;
    }

    p {
        font-size: 13px;
        line-height: 1.6;
    }
}


.security-framework-section {
    background-color: #000;
    padding: 80px 20px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
  }
  
  .section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(45deg, #ffffff, #00f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
  }
  
  .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #a8a8b3;
    max-width: 800px;
    margin: 0 auto 60px;
  }
  
  .security-card-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
  }
  
  .security-card {
    background-color: #111111;
    border-radius: 16px;
    padding: 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }
  
  .security-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(0, 255, 200, 0.3);
  }
  
  .security-card h4 {
    font-size: 20px;
    color: #fff;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  
  .security-card ul {
    padding-left: 18px;
    list-style: disc;
  }
  
  .security-card li {
    font-size: 15.5px;
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
  }
  
  .icon {
    font-size: 24px;
    color: #4CAF50;
    background: #0f0f0f;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 255, 200, 0.3);
  }
  
  /* Responsive tweaks */
  @media (max-width: 768px) {
    .section-title {
      font-size: 26px;
    }
    
    .security-card-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      
      .security-card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 30px;
      }
  }
  