/* Global Styles */
:root {
    --primary-color: #6a11cb; /* Dark Purple */
    --secondary-color: #2575fc; /* Dark Blue */
    --accent-color: #ffc107; /* Amber/Orange */
    --dark-bg: #1a1a2e; /* Very Dark Blue */
    --dark-card-bg: #16213e; /* Slightly Lighter Dark Blue */
    --light-text: #e0e0e0; /* Off-white */
    --heading-color: #ffffff; /* White */
    --border-color: rgba(255, 255, 255, 0.1);
    --overlay-color: rgba(0, 0, 0, 0.6);
    --glass-effect: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

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

.btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: var(--heading-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background-color: #3f3f5a;
    color: var(--light-text);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: #5a5a75;
    color: var(--heading-color);
}

.btn-ghost {
    background: transparent;
    color: var(--heading-color);
    border: 2px solid var(--heading-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-ghost:hover {
    background-color: var(--heading-color);
    color: var(--dark-bg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Typography Responsiveness */
h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.6rem;
}

.site-name {
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }
    h2 {
        font-size: 2.5rem;
    }
    h3 {
        font-size: 1.8rem;
    }
    .site-name {
        font-size: 1.8rem;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 4.5rem;
    }
    h2 {
        font-size: 3rem;
    }
    h3 {
        font-size: 2rem;
    }
    .site-name {
        font-size: 2rem;
    }
}

/* Header and Navigation */
.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.transparent-nav {
    background-color: transparent;
    padding: 15px 0;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.transparent-nav.scrolled {
    background-color: var(--dark-bg);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

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

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

.site-name {
    font-weight: 700;
}

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

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

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

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

@media (max-width: 1100px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-bg);
        padding: 20px 0;
        border-top: 1px solid var(--border-color);
        text-align: center;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .burger-menu {
        display: block;
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--heading-color);
    background-image: url('visuals/content/hero-software-background.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.7), rgba(37, 117, 252, 0.7));
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 80px; /* Offset for fixed header */
}

.logo-gradient-effect {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.hero-logo {
    height: 120px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px var(--secondary-color));
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 20px 0;
    position: relative;
    width: 50%;
    margin-bottom: 50px;
}

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

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

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

.timeline-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    position: absolute;
    top: 25px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--heading-color);
    font-size: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

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

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

.timeline-content {
    background-color: var(--dark-bg);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

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

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

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

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

    .timeline-item:nth-child(odd) {
        padding-right: 0;
    }
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
}

.features-grid:hover .feature-card {
    opacity: 0.5;
    filter: blur(2px);
}

.features-grid .feature-card:hover {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.feature-card {
    background-color: var(--dark-card-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 250px;
    border: 1px solid var(--border-color);
}

.feature-card .material-symbols-outlined {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    color: var(--heading-color);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--dark-card-bg);
}

.pricing-slider-container {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-slider-container label {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--heading-color);
}

#pricing-toggle {
    width: 200px;
    height: 8px;
    background: var(--border-color);
    border-radius: 5px;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    margin-bottom: 10px;
}

#pricing-toggle::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--accent-color);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#pricing-toggle::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--accent-color);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    width: 200px;
    color: var(--light-text);
    font-weight: 500;
}

.pricing-plans-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.pricing-plan {
    background-color: var(--dark-bg);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-plan h3 {
    color: var(--heading-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.pricing-plan .price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 30px;
    display: block;
}

.pricing-plan .price small {
    font-size: 1.2rem;
    color: var(--light-text);
}

.pricing-plan ul {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
    flex-grow: 1;
}

.pricing-plan ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.pricing-plan ul li .material-symbols-outlined {
    margin-right: 10px;
    font-size: 1.5rem;
}

.pricing-plan ul li .material-symbols-outlined:not(.cancel) {
    color: #4CAF50; /* Green check */
}

.pricing-plan ul li .material-symbols-outlined.cancel {
    color: #F44336; /* Red cancel */
}

/* Stats Section */
.stats-section {
    background-image: url('visuals/content/stats-pattern-background.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: var(--heading-color);
    padding: 20px;
    flex: 1;
    min-width: 200px;
}

.stat-item .material-symbols-outlined {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.orange-divider {
    width: 2px;
    height: 100px;
    background-color: var(--accent-color);
    margin: 0 30px;
    align-self: center;
}

@media (max-width: 992px) {
    .stats-grid {
        flex-direction: column;
    }
    .orange-divider {
        width: 100px;
        height: 2px;
        margin: 30px 0;
    }
}

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

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

.team-card {
    background-color: var(--dark-card-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    border: 5px solid var(--primary-color);
    box-shadow: 0 0 0 5px var(--secondary-color);
}

.team-card h3 {
    color: var(--heading-color);
    margin-bottom: 5px;
}

.team-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.mission-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--light-text);
    position: relative;
    padding: 0 20px;
}

.quote-mark-start, .quote-mark-end {
    font-size: 4rem;
    line-height: 0;
    position: absolute;
    color: var(--accent-color);
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.quote-mark-start {
    top: 0;
    left: 0;
}

.quote-mark-end {
    bottom: 0;
    right: 0;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #2a2a40; /* Slightly lighter dark background */
}

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

.testimonial-card {
    background-color: var(--dark-card-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-card .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--accent-color);
}

.testimonial-card h3 {
    color: var(--heading-color);
    margin-bottom: 5px;
}

.testimonial-card p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--light-text);
    flex-grow: 1;
}

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

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

.accordion-item {
    background-color: var(--dark-card-bg);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    color: var(--heading-color);
    font-weight: 600;
    font-size: 1.1rem;
    background-color: var(--dark-bg);
    border-bottom: 1px solid var(--border-color);
}

.accordion-item:last-child .accordion-header {
    border-bottom: none;
}

.accordion-header p {
    margin: 0;
}

.orange-circle-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .orange-circle-icon {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    background-color: var(--dark-card-bg);
}

.accordion-item.active .accordion-content {
    max-height: 200px; /* Adjust based on expected content height */
    padding: 15px 25px 25px;
}

.accordion-content p {
    margin: 0;
    color: var(--light-text);
    font-size: 0.95rem;
}

/* Footer */
.main-footer {
    background-color: #0d0d1a;
    color: var(--light-text);
    padding: 60px 0 30px;
    font-size: 0.9rem;
}

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

.footer-column {
    margin-bottom: 20px;
}

.footer-logo-link {
    margin-bottom: 20px;
}

.footer-column h4 {
    color: var(--heading-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.copyright {
    margin-top: 30px;
    text-align: center;
    grid-column: 1 / -1; /* Span all columns */
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.footer-widgets .widget-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-widgets .widget-item .material-symbols-outlined {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 10px;
}

.footer-widgets .widget-item strong {
    color: var(--heading-color);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-card-bg);
    color: var(--light-text);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    border-top: 1px solid var(--border-color);
}

.cookie-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 900px;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    flex-grow: 1;
}

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

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

.cookie-banner .btn-primary, .cookie-banner .btn-secondary {
    padding: 8px 18px;
    font-size: 0.9rem;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    .cookie-banner p {
        margin-bottom: 10px;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    section {
        padding: 60px 0;
    }

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

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

    .pricing-plans-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .pricing-plan {
        max-width: 90%;
    }

    .team-grid, .testimonial-grid, .features-grid, .faq-columns {
        grid-template-columns: 1fr;
    }

    .team-card, .testimonial-card, .feature-card, .accordion-item {
        margin-bottom: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-widgets .widget-item {
        justify-content: center;
    }
}
/* Wrapper for registration shield content */
.regShieldWrap {
    padding: 1.5rem 1rem; /* Top/bottom padding 24px, left/right 16px */
}

/* Main heading */
.regShieldWrap h1 {
    font-size: 2rem; /* Approximately 32px */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem; /* 16px space below */
}

/* Secondary heading */
.regShieldWrap h2 {
    font-size: 1.75rem; /* Approximately 28px */
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 0.9rem; /* 14.4px space below */
}

/* Tertiary heading */
.regShieldWrap h3 {
    font-size: 1.5rem; /* Approximately 24px */
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.8rem; /* 12.8px space below */
}

/* Quaternary heading */
.regShieldWrap h4 {
    font-size: 1.25rem; /* Approximately 20px */
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.7rem; /* 11.2px space below */
}

/* Quinary heading */
.regShieldWrap h5 {
    font-size: 1.1rem; /* Approximately 17.6px */
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0.6rem; /* 9.6px space below */
}

/* Paragraph text */
.regShieldWrap p {
    font-size: 1rem; /* Default body font size, approximately 16px */
    line-height: 1.6;
    margin-bottom: 1rem; /* 16px space below */
}

/* Unordered list */
.regShieldWrap ul {
    list-style-type: disc; /* Default bullet style */
    margin-bottom: 1rem; /* 16px space below the list */
    padding-left: 1.5rem; /* Indentation for bullets */
}

/* List item */
.regShieldWrap li {
    font-size: 1rem; /* Same as paragraph text */
    line-height: 1.6;
    margin-bottom: 0.5rem; /* 8px space between list items */
}
