/* General Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

:root {
    --primary-blue: #003366;
    --accent-blue: #00c0ff;
    --dark-bg: #1a1a1a;
    --darker-bg: #0d0d0d;
    --text-light: #ffffff;
    --text-secondary: #cccccc;
    --text-muted-custom: #888888; /* Custom muted color, not using class */
    --border-color: #333333;
    --button-hover-bg: #0056b3;
    --card-bg: #2a2a2a;
    --form-bg: #222222;
    --error-red: #e74c3c;
}

body {
    background-color: var(--darker-bg);
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 20px;
    color: var(--accent-blue);
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-blue);
}

.section-description {
    font-size: 1.1em;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
}

a:hover {
    color: var(--primary-blue);
}

button, .cta-button {
    display: inline-block;
    background-color: var(--accent-blue);
    color: var(--text-light);
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.1s ease-in-out;
    text-decoration: none; /* Ensure no underline */
}

button:hover, .cta-button:hover {
    background-color: var(--button-hover-bg);
}

/* Header */
.main-header {
    background-color: var(--darker-bg);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
}

.logo img {
    height: 40px;
    width: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.05em;
    transition: color 0.1s ease-in-out;
}

.main-nav ul li a:hover {
    color: var(--accent-blue);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    background-image: url(pictures/pics/hero-bg_22.jpg); /* Background image for the whole section */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%); /* Diagonal cut at the bottom */
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 51, 102, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%); /* Dark blue to dark gradient overlay */
    z-index: 1;
}

.hero-content-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 4em;
    margin-bottom: 20px;
    line-height: 1.1;
    position: relative;
    color: var(--accent-blue);
}

.hero-title .h1-text {
    position: relative;
    z-index: 1;
}

.hero-title .svg-decoration {
    position: absolute;
    bottom: -10px; /* Adjust as needed */
    left: 0;
    width: 100%;
    height: 50px; /* Adjust height for desired effect */
    fill: var(--primary-blue); /* Color of the SVG */
    opacity: 0.7;
    z-index: 0;
}

.hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.hero-image-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* About Section - Vertical Timeline */
.about-section {
    background-color: var(--dark-bg);
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    z-index: 0;
}

.timeline-item {
    padding: 20px 0;
    position: relative;
    width: 50%;
    opacity: 1; /* No animation, always visible */
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 30px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 30px;
    text-align: left;
}

.timeline-date {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 10px;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent-blue);
    color: var(--text-light);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -20px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -20px;
}

.timeline-content {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.timeline-content h3 {
    color: var(--accent-blue);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-secondary);
}

/* Services Section - Tabbed Layout */
.services-section {
    background-color: var(--darker-bg);
}

.tabs-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
}

.tab-button {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.1s ease-in-out, border-color 0.1s ease-in-out;
    border-bottom: 3px solid transparent;
    margin: 0 10px;
}

.tab-button:hover {
    color: var(--text-light);
    border-color: var(--primary-blue);
}

.tab-button.active {
    color: var(--accent-blue);
    border-color: var(--accent-blue);
}

.tabs-content {
    background-color: var(--dark-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.tab-pane {
    display: none;
    flex-direction: row;
    gap: 40px;
    align-items: center;
}

.tab-pane.active {
    display: flex;
}

.service-image {
    flex: 1;
    min-width: 300px;
}

.service-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-details {
    flex: 2;
}

.service-details h3 {
    font-size: 2em;
    color: var(--accent-blue);
    margin-bottom: 15px;
}

.service-details p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-light);
}

.service-features li i {
    color: var(--accent-blue);
    margin-right: 10px;
    font-size: 1.2em;
}

/* Industries Section */
.industries-section {
    background-color: var(--dark-bg);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
    align-items: stretch; /* Ensure equal height */
}

.industry-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 180px; /* Ensure a minimum height for all cards */
}

.industry-item i {
    font-size: 3.5em;
    color: var(--accent-blue);
    margin-bottom: 15px;
}

.industry-item h4 {
    font-size: 1.5em;
    color: var(--text-light);
    margin-bottom: 10px;
}

.quick-fact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 51, 102, 0.95); /* Darker blue overlay */
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    text-align: center;
}

.industry-item:hover .quick-fact {
    opacity: 1;
    pointer-events: all;
}

/* Stats Section */
.stats-section {
    background-color: var(--darker-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px; /* Ensure equal height */
}

.stat-item i {
    font-size: 3em;
    color: var(--accent-blue);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3.5em;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.2em;
    color: var(--text-secondary);
}

/* How It Works Section */
.how-it-works-section {
    background-color: var(--dark-bg);
}

.steps-container {
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Desktop: 4 columns */
    gap: 30px;
    justify-content: center;
    align-items: stretch; /* Ensure equal height */
}

.step-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 220px; /* Ensure minimum height */
}

.step-card .step-icon {
    font-size: 3.5em;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.8em;
    color: var(--text-light);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-secondary);
}

.progress-indicators {
    display: none; /* Only for mobile, hidden on desktop */
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--darker-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch; /* Ensure equal height */
}

.testimonial-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px; /* Ensure equal height */
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--accent-blue);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--accent-blue);
    font-size: 1.1em;
}

/* Team Section */
.team-section {
    background-color: var(--dark-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 blocks in 1 row */
    gap: 30px;
    align-items: stretch; /* Ensure equal height */
}

.team-member-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 400px; /* Ensure equal height */
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--primary-blue);
}

.member-name {
    font-size: 1.8em;
    color: var(--text-light);
    margin-bottom: 10px;
}

.member-role {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-light);
}

.role-lead {
    background-color: #007bff; /* Specific blue */
}

.role-analyst {
    background-color: #28a745; /* Greenish */
}

.role-educator {
    background-color: #ffc107; /* Yellowish */
}

.member-bio {
    text-align: left;
    color: var(--text-secondary);
    font-size: 0.95em;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.member-bio p {
    margin-bottom: 15px;
}

.member-bio .bio-full {
    display: none;
}

.expand-bio-button {
    background: none;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9em;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 10px;
}

.expand-bio-button:hover {
    background-color: var(--accent-blue);
    color: var(--text-light);
}

/* Contact Section - Form */
.contact-section {
    background-color: var(--darker-bg);
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--form-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.consultation-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 600;
}

.consultation-form input[type="text"],
.consultation-form input[type="email"],
.consultation-form input[type="tel"],
.consultation-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: var(--darker-bg);
    color: var(--text-light);
    font-size: 1em;
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
    color: var(--text-muted-custom);
}

.consultation-form input:focus,
.consultation-form textarea:focus {
    border-color: var(--accent-blue);
    outline: none;
}

.consultation-form textarea {
    resize: vertical;
}

.consultation-form .submit-button {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
    font-weight: 600;
}

.error-message {
    color: var(--error-red);
    font-size: 0.9em;
    margin-top: 5px;
    display: none;
}

/* Footer */
.main-footer {
    background-color: var(--dark-bg);
    color: var(--text-secondary);
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.main-footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.logo-footer img {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 0.9em;
    line-height: 1.8;
}

.footer-heading {
    font-size: 1.5em;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-nav-list {
    list-style: none;
}

.footer-nav-list li {
    margin-bottom: 12px;
}

.footer-nav-list a {
    color: var(--text-secondary);
    font-size: 1em;
    transition: color 0.1s ease-in-out;
}

.footer-nav-list a:hover {
    color: var(--accent-blue);
}

.subscribe-form {
    display: flex;
    margin-top: 20px;
    flex-wrap: wrap;
}

.email-input {
    flex-grow: 1;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px 0 0 5px;
    background-color: var(--darker-bg);
    color: var(--text-light);
    font-size: 0.95em;
    min-width: 150px;
}

.subscribe-button {
    padding: 12px 20px;
    border-radius: 0 5px 5px 0;
    background-color: var(--accent-blue);
    color: var(--text-light);
    border: none;
    cursor: pointer;
    font-size: 0.95em;
    transition: background-color 0.1s ease-in-out;
}

.subscribe-button:hover {
    background-color: var(--button-hover-bg);
}

.footer-bottom {
    background-color: var(--darker-bg);
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
    font-size: 0.9em;
    border-top: 1px solid var(--border-color);
}

/* Modal Styles */
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 2000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
    /* display: flex; */
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--card-bg);
    margin: auto;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    text-align: center;
    position: relative;
    color: var(--text-light);
}

.modal-content h3 {
    color: var(--accent-blue);
    margin-bottom: 15px;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.close-button {
    color: var(--text-secondary);
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: var(--accent-blue);
    text-decoration: none;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3em;
    }

    .hero-subtitle {
        font-size: 1.2em;
    }

    .hero-content-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content, .hero-image-column {
        max-width: 100%;
    }

    .main-nav ul {
        display: none; /* Hide nav for smaller screens, could add a hamburger menu if required */
    }

    .main-header .container {
        justify-content: center;
    }

    .timeline-container::after {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px !important;
        padding-right: 10px !important;
        text-align: right !important;
    }

    .timeline-item:nth-child(odd), .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon {
        left: 0;
        margin-left: 0;
        top: 20px;
        transform: translateY(0);
    }

    .tab-pane {
        flex-direction: column;
    }

    .tabs-navigation {
        flex-wrap: wrap;
    }

    .tab-button {
        flex-basis: 100%;
        margin-bottom: 10px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjust for smaller screens */
    }

    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjust for smaller screens */
    }

    .footer-column {
        text-align: center;
        align-items: center;
    }

    .subscribe-form {
        flex-direction: column;
        width: 100%;
    }

    .email-input, .subscribe-button {
        border-radius: 5px;
        margin-bottom: 10px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2em;
    }

    .section-description {
        font-size: 1em;
    }

    .hero-section {
        height: auto;
        padding: 100px 0;
    }

    .hero-title {
        font-size: 2.5em;
    }

    .hero-subtitle {
        font-size: 1.1em;
    }

    .tabs-content {
        padding: 20px;
    }

    .service-image {
        min-width: unset;
    }

    .industry-grid, .stats-grid, .testimonials-grid, .team-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }

    .steps-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    .progress-indicators {
        display: flex; /* Show for mobile */
        justify-content: center;
        margin-top: 30px;
        gap: 10px;
    }

    .progress-dot {
        width: 10px;
        height: 10px;
        background-color: var(--text-secondary);
        border-radius: 50%;
        cursor: pointer;
    }

    .progress-dot.active {
        background-color: var(--accent-blue);
    }
}

/* FAQ Section - Split Column */
.faq-section {
    background-color: var(--darker-bg);
}

.faq-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.faq-questions {
    flex: 1;
    min-width: 300px;
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.faq-questions ul {
    list-style: none;
}

.faq-questions li {
    margin-bottom: 15px;
}

.faq-question-button {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.2em;
    font-weight: 600;
    text-align: left;
    width: 100%;
    padding: 10px 0;
    cursor: pointer;
    transition: color 0.1s ease-in-out;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question-button:hover {
    color: var(--accent-blue);
}

.faq-question-button i {
    font-size: 1.2em;
    transition: transform 0.1s ease-in-out;
}

.faq-question-button.active i {
    transform: rotate(180deg);
}

.faq-answers {
    flex: 2;
    min-width: 400px;
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.faq-answer-item {
    display: none;
}

.faq-answer-item.active {
    display: block;
}

.faq-answer-item h4 {
    font-size: 1.8em;
    color: var(--accent-blue);
    margin-bottom: 15px;
}

.faq-answer-item p {
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .faq-container {
        flex-direction: column;
    }

    .faq-questions, .faq-answers {
        min-width: unset;
        width: 100%;
    }
}
/* New styles for content within .dataClauseFrame */

/* Wrapper for content blocks, providing spacing and a distinct background */
.dataClauseFrame {
    padding: 60px 40px; /* Top/bottom and side padding for the content block */
    max-width: 900px; /* Maximum width for optimal content readability */
    margin: 60px auto; /* Center the content block horizontally, with vertical spacing */
    background-color: var(--dark-bg); /* Slightly lighter background than body for contrast */
    border-radius: 10px; /* Soften the edges of the content block */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4); /* Subtle shadow for depth */
}

/* Headings within the content block */
.dataClauseFrame h1 {
    font-size: 2.4em; /* Moderate H1 size for content */
    color: var(--accent-blue);
    margin-top: 0; /* No top margin if it's the first element in the frame */
    margin-bottom: 25px;
    line-height: 1.2;
}

.dataClauseFrame h2 {
    font-size: 2em; /* Moderate H2 size */
    color: var(--text-light);
    margin-top: 40px; /* Space before H2 if it follows other content */
    margin-bottom: 20px;
    line-height: 1.3;
}

.dataClauseFrame h3 {
    font-size: 1.7em; /* Moderate H3 size */
    color: var(--text-light);
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.dataClauseFrame h4 {
    font-size: 1.4em; /* Moderate H4 size */
    color: var(--text-light);
    margin-top: 25px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.dataClauseFrame h5 {
    font-size: 1.2em; /* Moderate H5 size */
    color: var(--text-light);
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Paragraphs within the content block */
.dataClauseFrame p {
    font-size: 1.05em; /* Standard paragraph font size for readability */
    color: var(--text-secondary);
    margin-bottom: 1.2em; /* Spacing between paragraphs */
    line-height: 1.7; /* Enhanced line height for better readability */
}

/* Unordered lists within the content block */
.dataClauseFrame ul {
    list-style: disc; /* Default disc style for list items */
    color: var(--text-secondary); /* Color for list item text */
    margin-left: 25px; /* Indentation for the list */
    margin-top: 15px; /* Space before the list */
    margin-bottom: 15px; /* Space after the list */
    padding: 0;
}

/* List items within unordered lists */
.dataClauseFrame li {
    font-size: 1.05em; /* Standard list item font size */
    color: var(--text-secondary);
    margin-bottom: 0.8em; /* Spacing between individual list items */
    line-height: 1.7; /* Enhanced line height for better readability */
}

/* Links within the dataClauseFrame for consistency */
.dataClauseFrame a {
    color: var(--accent-blue);
    text-decoration: underline; /* Underline links for clear distinction */
    transition: color 0.1s ease-in-out, text-decoration 0.1s ease-in-out;
}

.dataClauseFrame a:hover {
    color: var(--primary-blue);
    text-decoration: none; /* Remove underline on hover */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .dataClauseFrame {
        padding: 40px 20px; /* Reduce padding on smaller screens */
        margin: 40px auto; /* Adjust vertical margin */
    }

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

    .dataClauseFrame h2 {
        font-size: 1.7em;
    }

    .dataClauseFrame h3 {
        font-size: 1.5em;
    }

    .dataClauseFrame h4 {
        font-size: 1.3em;
    }

    .dataClauseFrame h5 {
        font-size: 1.1em;
    }

    .dataClauseFrame p,
    .dataClauseFrame ul li {
        font-size: 1em;
    }
}
.footer-bottom .container {
    padding-bottom: unset;
}