/* Global Styles */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --accent-color: #28a745;
    --light-blue: #e0f2f7;
    --dark-blue: #0056b3;
    --text-color: #333;
    --heading-color: #222;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #dee2e6;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --gradient-blue: linear-gradient(135deg, #007bff, #0056b3);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-light);
    scroll-behavior: smooth;
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-blue);
    border-radius: 5px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: normal;
    word-break: break-word;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--background-white);
    box-shadow: 0 4px 10px var(--shadow-light);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--background-white);
}

.btn-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
.main-header {
    background-color: var(--background-white);
    padding: 15px 0;
    box-shadow: 0 2px 10px var(--shadow-light);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

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

.logo-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--heading-color);
}

.logo-brand .logo {
    height: 40px;
    margin-right: 10px;
}

.logo-brand .site-name {
    font-size: 1.8rem;
    font-weight: 700;
    white-space: nowrap;
    transition: font-size 0.3s ease;
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.main-nav .nav-list a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-nav .nav-list a:hover {
    color: var(--primary-color);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--heading-color);
}

/* Mobile Navigation */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background-color: var(--background-white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
    transition: right 0.3s ease;
}

.mobile-nav-overlay.active .mobile-nav-menu {
    right: 0;
}

.close-menu {
    background: none;
    border: none;
    font-size: 2rem;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    color: var(--heading-color);
}

.mobile-nav-list {
    list-style: none;
    padding-top: 60px;
}

.mobile-nav-list li {
    margin-bottom: 20px;
}

.mobile-nav-list a {
    display: block;
    color: var(--heading-color);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.mobile-nav-list a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--background-white);
    background-image: url('photos/uploads/Account-Consulting-Report-Table-Person-People.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-statistic {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.trust-badges {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge-icon {
    height: 50px;
    filter: grayscale(100%) brightness(200%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.badge-icon:hover {
    opacity: 1;
}

/* About Us Section */
.about-section {
    background-color: var(--background-white);
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.about-image {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: linear-gradient(90deg, #ff6b6b, #ee0979);
    color: var(--background-white);
    padding: 15px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-content h2 {
    text-align: left;
    margin-bottom: 20px;
}

.about-content h2::after {
    left: 0;
    transform: translateX(0);
}

.about-content h3 {
    font-size: 1.5rem;
    color: var(--heading-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-content p {
    margin-bottom: 15px;
}

.about-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.about-content ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.about-content ul li::before {
    content: '\f00c'; /* Font Awesome check icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0;
}

/* Our Services Section */
.services-section {
    background-color: var(--light-blue);
    padding: 80px 0;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--background-white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%; /* Ensure equal height */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-color);
}

/* Key Features Section */
.features-section {
    background-color: var(--background-white);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-dashboard-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.feature-content h2 {
    text-align: left;
    margin-bottom: 30px;
}

.feature-content h2::after {
    left: 0;
    transform: translateX(0);
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}

.feature-list li strong {
    color: var(--primary-color);
}

.feature-list li::before {
    content: "";
    counter-increment: feature-counter;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--gradient-blue);
    color: var(--background-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Meet the Team Section */
.team-section {
    background-color: var(--light-blue);
    padding: 80px 0;
    text-align: center;
}

.founders-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.founder-card {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-light);
    max-width: 350px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--primary-color);
    box-shadow: 0 0 0 8px rgba(0, 123, 255, 0.2);
}

.founder-card h3 {
    font-size: 1.7rem;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 0.95rem;
    line-height: 1.5;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--background-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%; /* Ensure equal height */
}

.team-member h4 {
    font-size: 1.4rem;
    color: var(--heading-color);
    margin-bottom: 5px;
}

/* Our Milestones & Statistics Section */
.milestones-section {
    background-color: var(--background-white);
    padding: 80px 0;
    text-align: center;
}

.timeline-container {
    position: relative;
    width: 90%;
    margin: 50px auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0%; /* Initial width for animation */
    height: 4px;
    background: var(--gradient-blue);
    z-index: 1;
    transform: translateY(-50%);
    border-radius: 2px;
}

.timeline-point {
    position: relative;
    z-index: 2;
    background-color: var(--background-white);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    margin: 15px;
}

.timeline-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.milestone-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.milestone-description {
    font-size: 13px;
    color: var(--text-color);
    line-height: 1.2;
}

/* Event Locations Section */
.events-section {
    background-color: var(--light-blue);
    padding: 80px 0;
    text-align: center;
}

.events-section p {
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.map-container {
    height: 500px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow-light);
    overflow: hidden;
    margin-top: 40px;
}

.event-popup {
    padding: 15px;
    text-align: left;
    max-width: 250px;
}

.event-popup h4 {
    font-size: 1.3rem;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.event-popup p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.event-register-link {
    font-size: 0.9rem;
    padding: 8px 15px;
}

/* Contact Form Section */
.contact-section {
    background-color: var(--background-white);
    padding: 80px 0;
    text-align: center;
}

.contact-section p {
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--background-light);
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    width: auto;
    padding: 12px 40px;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Footer */
.main-footer {
    background-color: var(--background-white);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    margin-top: 60px; /* Ensure space for cookie banner */
}

.main-footer .logo-brand {
    justify-content: center;
    margin-bottom: 20px;
}

.main-footer .copyright {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-blue);
    color: var(--background-white);
    padding: 20px 15px;
    z-index: 1000;
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    flex-wrap: wrap;
}

.cookie-banner.show {
    display: flex;
}

.cookie-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
}

.cookie-content p {
    margin: 0;
    flex-grow: 1;
    text-align: center;
}

.cookie-content p a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Cookie Settings Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

.modal-overlay.active {
    visibility: visible;
    opacity: 1;
}

.modal-content {
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--heading-color);
}

.modal-content h3 {
    font-size: 1.8rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    text-align: center;
}

.modal-content p {
    margin-bottom: 25px;
    font-size: 0.95rem;
    text-align: center;
}

.cookie-category {
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--background-light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.cookie-category input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
    align-self: flex-start;
    margin-top: 3px;
}

.cookie-category label {
    font-weight: 600;
    color: var(--heading-color);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
}

.cookie-category label span {
    font-weight: 400;
    color: var(--secondary-color);
    margin-left: 10px;
    font-size: 0.9rem;
}

.cookie-category .category-description {
    font-size: 0.85rem;
    color: var(--text-color);
    margin-top: 5px;
    margin-bottom: 0;
    text-align: left;
    padding-left: 25px;
}

#save-cookie-settings {
    width: 100%;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1300px) {
    .main-nav .nav-list {
        display: none;
    }
    .burger-menu {
        display: block;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .logo-brand .site-name {
        font-size: 1.5rem;
    }
    .hero-statistic {
        font-size: 4rem;
    }
    .hero-text {
        font-size: 1.3rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .about-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    .about-image-wrapper, .feature-image-wrapper {
        margin-bottom: 40px;
    }
    .about-content h2::after, .feature-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .founders-section {
        flex-direction: column;
        align-items: center;
    }
    .founder-card {
        max-width: 450px;
    }
    .timeline-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    .timeline-line {
        width: 100%;
        height: 0;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        border-left: 4px solid var(--primary-color);
        background: none;
        animation: none; /* Disable horizontal fill on tablet */
    }
    .timeline-point {
        margin: 20px 0;
       
    }
 
    .milestone-description {
        font-size: 0.8rem;
    }
    .cookie-content p {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .logo-brand .site-name {
        font-size: 1.25rem;
    }
    .hero-section {
        height: 80vh;
    }
    .hero-statistic {
        font-size: 3rem;
    }
    .hero-text {
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .about-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    .about-image-wrapper, .feature-image-wrapper {
        margin-bottom: 30px;
    }
    .about-content h2::after, .feature-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .experience-badge {
        font-size: 1rem;
        padding: 10px 20px;
        left: 0;
        bottom: 10px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .founders-section {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .founder-card {
        max-width: 100%;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .timeline-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .timeline-line {
        width: 0;
        height: 100%;
        top: 0;
        left: 50%;
        transform: translateX(-50%); 
        background: none;
        animation: none; /* Disable horizontal fill on mobile */
    }
    .timeline-point {
        margin: 20px 0;
        
    }
 
    .milestone-description {
        font-size: 0.75rem;
    }
    .map-container {
        height: 300px;
    }
    .contact-form {
        padding: 25px;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    .cookie-banner .btn {
        flex-grow: 1;
    }
    .modal-content {
        padding: 20px;
    }
    .modal-content h3 {
        font-size: 1.5rem;
    }
    .cookie-category label {
        font-size: 1rem;
    }
    .cookie-category label span {
        font-size: 0.8rem;
    }
    .cookie-category .category-description {
        padding-left: 0;
    }
    .main-footer .footer-nav ul {
        flex-direction: column;
        gap: 10px;
    }
}/* Styles for the main content block */
.infoGuardBlock {
    padding-top: 2.5rem; /* Top padding for the content block */
    padding-right: 1.5rem; /* Right padding for the content block */
    padding-left: 1.5rem; /* Left padding for the content block */
    padding-bottom: 2.5rem; /* Bottom padding for the content block */
    /* You can add more styles for the block itself here, e.g., background-color, border, max-width */
}

/* Heading 1 styles */
.infoGuardBlock h1 {
    word-break: break-all;
    font-size: 2rem; /* Moderate font size for H1 */
    font-weight: 700; /* Bold font weight */
    line-height: 1.2; /* Line height for readability */
    margin-top: 1.8rem; /* Top margin for spacing */
    margin-bottom: 1rem; /* Bottom margin for spacing */
}

/* Heading 2 styles */
.infoGuardBlock h2 {
        word-break: break-all;
    font-size: 1.75rem; /* Moderate font size for H2 */
    font-weight: 600; /* Semi-bold font weight */
    line-height: 1.3; /* Line height for readability */
    margin-top: 1.5rem; /* Top margin for spacing */
    margin-bottom: 0.9rem; /* Bottom margin for spacing */
}

/* Heading 3 styles */
.infoGuardBlock h3 {
        word-break: break-all;
    font-size: 1.5rem; /* Moderate font size for H3 */
    font-weight: 600; /* Semi-bold font weight */
    line-height: 1.4; /* Line height for readability */
    margin-top: 1.2rem; /* Top margin for spacing */
    margin-bottom: 0.8rem; /* Bottom margin for spacing */
}

/* Heading 4 styles */
.infoGuardBlock h4 {
        word-break: break-all;
    font-size: 1.25rem; /* Moderate font size for H4 */
    font-weight: 500; /* Medium font weight */
    line-height: 1.5; /* Line height for readability */
    margin-top: 1rem; /* Top margin for spacing */
    margin-bottom: 0.7rem; /* Bottom margin for spacing */
}

/* Heading 5 styles */
.infoGuardBlock h5 {
        word-break: break-all;
    font-size: 1.1rem; /* Moderate font size for H5 */
    font-weight: 500; /* Medium font weight */
    line-height: 1.6; /* Line height for readability */
    margin-top: 0.8rem; /* Top margin for spacing */
    margin-bottom: 0.6rem; /* Bottom margin for spacing */
}

/* Paragraph styles */
.infoGuardBlock p {
    font-size: 1rem; /* Standard font size for paragraphs */
    line-height: 1.6; /* Line height for readability */
    margin-top: 0; /* No top margin by default, relies on previous element's bottom margin */
    margin-bottom: 1rem; /* Bottom margin for spacing between paragraphs */
}

/* Unordered list styles */
.infoGuardBlock ul {
    list-style: disc; /* Default bullet style */
    padding-left: 1.5rem; /* Indentation for bullet points */
    margin-top: 1rem; /* Top margin for spacing */
    margin-bottom: 1rem; /* Bottom margin for spacing */
}

/* List item styles */
.infoGuardBlock li {
    font-size: 1rem; /* Standard font size for list items */
    line-height: 1.6; /* Line height for readability */
    margin-bottom: 0.5rem; /* Bottom margin for spacing between list items */
}
section {
    overflow: hidden;
}