.hero-section {
    position: relative;
    height: 95vh;
    overflow: hidden;
    padding-top: 100px; /* Add padding to account for fixed header */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Darkened overlay for better text readability */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Remove container constraints for hero section */
.hero-section .container {
    width: 100%;
    max-width: none;
    padding: 0;
}

.hero-section .hero-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.hero-section .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 20px;
    z-index: 2;
}

.hero-section .hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-section .hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-section .hero-content .social-proof {
    font-size: 18px;
    margin: 25px 0;
    padding: 15px 25px;
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #FFD700; /* Gold accent */
    backdrop-filter: blur(5px);
    line-height: 1.6;
}

.hero-section .hero-content .social-proof .highlight {
    color: #FFD700; /* Gold color */
    font-weight: 700;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 48, 100, 0.9);
    padding: 20px 0;
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    width: 300px;
    height: 60px; /* Adjust this based on your logo's aspect ratio */
    display: block;
}

header .alignright {
    display: flex;
    align-items: center;
    margin: 0;
}

header .dt-sc-bordered-button {
    color: #ffffff;
    border-color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border: 2px solid;
    display: inline-block;
    line-height: 1.4;
}

#main {
    padding-top: 0;
}

.why-kill-dei {
    padding: 80px 0;
    background-color: #f8f9fa;  /* Light gray */
}

.why-kill-dei .section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    color: #333;
    line-height: 1.4; /* Increased line height */
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item .icon {
    font-size: 36px;
    color: #003064;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.breaking-news-alert {
    background-color: #fff;
    padding: 80px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.alert-content {
    background-color: #ffebeb;
    border-left: 5px solid #dc3545;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #333333; /* Darker text color for better contrast */
}

.alert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap; /* Allow wrapping on mobile */
    gap: 10px; /* Space between wrapped items */
}

.alert-badge {
    background-color: #dc3545;
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

.date-badge {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.alert-content h2 {
    color: #1a1a1a;
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.alert-content p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.action-buttons .primary-button {
    background-color: #dc3545;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.action-buttons .primary-button:hover {
    background-color: #c82333;
}

.action-buttons .secondary-button {
    background-color: transparent;
    color: #b91d2e; /* Darker red for better contrast */
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #b91d2e;
    transition: all 0.3s ease;
}

.action-buttons .secondary-button:hover {
    background-color: #dc3545;
    color: white;
}

@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
    }
    
    .alert-content h2 {
        font-size: 24px;
    }
}

/* Add to existing breaking-news-alert styles */

.alert-details {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.key-points {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: #333333; /* Darker text color */
}

.key-points h3 {
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 22px;
}

.key-points ul {
    list-style: none;
    padding: 0;
}

.key-points li {
    margin-bottom: 15px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.key-points li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #dc3545;
}

.point-label {
    font-weight: 600;
    color: #dc3545;
    margin-right: 8px;
}

.timeline-warning {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 30px;
}

.countdown {
    text-align: center;
    padding: 20px;
    background: #dc3545;
    border-radius: 8px;
    color: white;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.countdown .days {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.countdown .label {
    font-size: 14px;
    opacity: 1; /* Remove opacity */
    color: #ffffff; /* Ensure white text */
    font-weight: 500; /* Slightly bolder */
}

.warning-message {
    flex: 1;
}

.warning-message h4 {
    color: #1a1a1a;
    margin-bottom: 15px;
    font-size: 20px;
}

.warning-message ul {
    list-style: none;
    padding: 0;
}

.warning-message li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #444;
}

.warning-message li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

@media (max-width: 992px) {
    .alert-details {
        grid-template-columns: 1fr;
    }
    
    .timeline-warning {
        flex-direction: column;
    }
    
    .countdown {
        min-width: auto;
    }
}

.executive-order-link {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    padding: 12px 20px;
    background-color: #003064;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.executive-order-link:hover {
    background-color: #004693;
}

.executive-order-link i {
    margin-right: 8px;
    font-size: 14px;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    gap: 0;
}

/* Move the connector behind the content */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: #003064;
    z-index: 1;
}

.process-step {
    flex: 1;
    position: relative;
    z-index: 2;
}

/* Remove individual connectors since we're using the parent connector */
.step-connector {
    display: none;
}

.step-content {
    background: white;
    padding: 30px;
    margin: 0 15px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
    border: 2px solid #003064;
    height: 250px; /* Fixed height for all boxes */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-content:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #003064;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 3px solid white;
    z-index: 3;
}

.step-content .icon {
    font-size: 32px;
    color: #003064;
    margin: 20px 0 15px;
    text-align: center;
}

.step-content h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.step-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .process-timeline {
        flex-direction: column;
        padding: 30px 0;
        gap: 40px;
    }

    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 50%;
        width: 4px;
        height: 100%;
        transform: translateX(-50%);
    }

    .step-content {
        margin: 0 auto;
        max-width: 400px;
        height: auto; /* Allow height to be flexible on mobile */
        min-height: 200px;
    }
}

@media (max-width: 576px) {
    .step-content {
        padding: 20px;
        margin: 0 20px;
    }
}

footer {
    background-color: #003064;
    color: #ffffff;
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.mission-statement {
    padding-right: 40px;
}

.footer-logo {
    margin-bottom: 30px;
    margin-left: 0;
}

.footer-logo img {
    width: auto;
    height: 90px;
    display: block;
    margin: 0;  /* Remove any automatic margins */
}

.mission-statement h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}

.mission-statement p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-contact {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
}

.footer-contact h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.footer-contact .cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #003064;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    transition: background-color 0.3s ease;
}

.footer-contact .cta-button:hover {
    background-color: #f0f0f0;
}

.headquarters {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.headquarters p {
    font-size: 14px;
    margin-bottom: 5px;
}

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 20px;
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-statement {
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .copyright-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-links {
        justify-content: center;
    }
}

/* Add spacing between major sections */
.breaking-news-alert {
    padding: 80px 0;
}

.why-kill-dei {
    padding: 80px 0;
}

#primary {
    padding: 80px 0;
    background-color: #f8f9fa;  /* Light gray */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .breaking-news-alert,
    .why-kill-dei,
    #primary {
        padding: 60px 0;
    }

    header .logo img,
    .footer-logo img {
        width: 200px;
        height: 40px;
    }

    .hero-section .hero-content {
        top: 60%;
    }
}

.hero-content .video-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #003064;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-content .video-cta:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
}

.hero-content .video-cta i {
    font-size: 20px;
}

.legal-compliance {
    padding: 80px 0;
    background-color: #ffffff;  /* White */
}

.legal-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    background: #f8f9fa;  /* Light gray to contrast with white background */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.legal-row.reverse {
    flex-direction: row-reverse;
}

.legal-image {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.legal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.legal-content {
    flex: 1;
    padding: 40px;
}

.legal-content h3 {
    color: #1a1a1a;
    font-size: 28px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.legal-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #003064;
}

.legal-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-points li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #444;
    line-height: 1.6;
    font-size: 16px;
}

.legal-points li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #003064;
}

.legal-points li:last-child {
    margin-bottom: 0;
}

.legal-cta {
    text-align: center;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

.legal-cta .disclaimer {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
}

.legal-cta .cta-button {
    display: inline-block;
    background: #003064;
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.legal-cta .cta-button:hover {
    background: #004693;
}

@media (max-width: 992px) {
    .legal-row {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .legal-row.reverse {
        flex-direction: column;
    }

    .legal-image {
        min-height: 300px;
        width: 100%;
    }

    .legal-content {
        padding: 30px;
    }

    .legal-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .legal-image {
        min-height: 200px;
    }
    
    .legal-cta {
        padding: 30px 20px;
    }
}

.legal-compliance .section-title {
    text-align: center;
    margin-bottom: 25px;
}

.section-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.section-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
}

.video-section {
    padding: 80px 0;
    background-color: #003064;
    color: white;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-content {
    text-align: center;
}

.video-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.video-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.video-wrapper {
    position: relative;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-placeholder {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.video-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button i {
    font-size: 30px;
    color: #003064;
    margin-left: 5px; /* Optical centering for play icon */
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.highlight-item i {
    font-size: 24px;
    color: #FFD700;
}

.highlight-item span {
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .video-content h2 {
        font-size: 28px;
    }

    .video-content p {
        font-size: 16px;
    }

    .video-highlights {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 24px;
    }
}

/* Modal Styles */
.schedule-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 50px auto;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

.schedule-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    color: #000000; /* Changed from default gray to black */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #003064;
    outline: none;
}

.submit-button {
    background-color: #003064;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background-color: #004693;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 20px auto;
        padding: 30px;
    }
}

/* Process Modal Styles */
.process-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
}

.process-content {
    max-width: 800px;
    padding: 50px;
}

.process-content h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #003064;
}

.process-timeline-modal {
    position: relative;
    padding: 20px 0;
}

.process-timeline-modal::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #003064;
}

.timeline-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 15px;
    top: 0;
    width: 40px;
    height: 40px;
    background: #003064;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    z-index: 1;
}

.step-details {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-details:hover {
    transform: translateX(10px);
}

.step-details h3 {
    color: #003064;
    margin-bottom: 15px;
    font-size: 20px;
}

.step-description p {
    margin-bottom: 15px;
    color: #444;
    line-height: 1.6;
}

.step-description ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.step-description li {
    position: relative;
    padding-left: 20px;
    color: #666;
}

.step-description li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #003064;
}

.process-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.process-cta p {
    margin-bottom: 20px;
    color: #666;
}

.process-cta .cta-button {
    display: inline-block;
    background: #003064;
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.process-cta .cta-button:hover {
    background: #004693;
}

@media (max-width: 768px) {
    .process-content {
        padding: 30px;
    }
    
    .step-description ul {
        grid-template-columns: 1fr;
    }
}

.competitive-advantage {
    padding: 80px 0;
    background-color: #ffffff;
}

.competitive-advantage .section-title {
    text-align: center;
    margin-bottom: 25px;
}

.section-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.section-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.comparison-column {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #333333; /* Darker text color */
}

.comparison-column.featured {
    background: #003064;
    color: white;
    transform: translateY(-20px);
}

.column-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.featured .column-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.column-header h3 {
    font-size: 24px;
    margin: 0;
}

.featured .column-header h3 {
    color: white;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.comparison-list li:last-child {
    margin-bottom: 0;
}

.comparison-list.negative i {
    color: #dc3545;
    font-size: 18px;
}

.comparison-list.positive i {
    color: #FFD700;
    font-size: 18px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #003064;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.stat-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.advantage-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.advantage-cta p {
    font-size: 18px;
    color: #333;
    margin-bottom: 25px;
}

.advantage-cta .cta-button {
    display: inline-block;
    background: #003064;
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.advantage-cta .cta-button:hover {
    background: #004693;
}

@media (max-width: 992px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparison-column.featured {
        transform: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .column-header h3 {
        font-size: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 16px;
    }
}

/* Mobile header adjustments */
@media (max-width: 768px) {
    header .container {
        justify-content: center; /* Center the logo */
        padding: 10px;
    }

    header .logo {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    header .logo img {
        width: 250px; /* Larger logo */
        height: 50px;
    }

    header .alignright {
        display: none;
    }

    /* Hero section mobile adjustments */
    .hero-section {
        height: 100vh;
        padding-top: 80px; /* Reduced padding for mobile */
    }

    .hero-section .hero-content {
        padding: 20px;
        width: 90%;
        max-width: none;
    }

    .hero-section .hero-content h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero-section .hero-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

/* Hero section responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
    }

    .hero-section .hero-content h2 {
        font-size: 32px;
    }

    .hero-section .hero-content p {
        font-size: 16px;
    }

    .hero-section .hero-content .social-proof {
        font-size: 14px;
        margin: 15px 0;
        padding: 10px 15px;
    }

    .hero-content .video-cta {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Breaking news alert responsive adjustments */
@media (max-width: 768px) {
    .breaking-news-alert {
        padding: 40px 0;
    }

    .alert-content {
        padding: 20px;
    }

    .alert-content h2 {
        font-size: 24px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .action-buttons a {
        width: 100%;
        text-align: center;
    }
}

/* Benefits grid responsive adjustments */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        padding: 20px;
    }
}

/* Video section responsive adjustments */
@media (max-width: 768px) {
    .video-section {
        padding: 40px 0;
    }

    .video-content h2 {
        font-size: 28px;
    }

    .video-highlights {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Legal compliance section responsive adjustments */
@media (max-width: 992px) {
    .legal-row {
        flex-direction: column;
        gap: 30px;
    }

    .legal-row.reverse {
        flex-direction: column;
    }

    .legal-image {
        height: 250px;
    }
}

/* Modal responsive adjustments */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 20px;
        margin: 20px auto;
    }

    .schedule-form .form-group {
        margin-bottom: 15px;
    }
}

/* Footer responsive adjustments */
@media (max-width: 768px) {
    footer {
        padding-top: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mission-statement {
        padding-right: 0;
    }

    .footer-logo img {
        height: 60px;
    }

    .copyright-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-links {
        justify-content: center;
    }
}

/* General responsive spacing adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .section-intro p {
        font-size: 16px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Container and section adjustments */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        width: 95%; /* Use more screen width on mobile */
    }

    /* Adjust breaking news alert width */
    .alert-content {
        padding: 20px;
        margin: 0 -10px; /* Negative margin to extend width */
    }

    /* Adjust benefits grid width */
    .benefits-grid {
        margin: 0 -10px;
    }

    .benefit-item {
        margin: 0 5px;
    }

    /* Adjust legal section width */
    .legal-content {
        padding: 30px 20px;
    }

    /* Adjust video section width */
    .video-container {
        width: 100%;
        margin: 0;
    }

    /* Process timeline adjustments */
    .process-timeline {
        width: 100%;
        padding: 30px 10px;
    }

    .step-content {
        margin: 0 10px;
    }
}

/* Privacy Policy Styles */
.privacy-policy-section {
    padding: 140px 0 80px; /* Increased top padding to account for header height */
    background: #fff;
}

.privacy-policy-section h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.8em;
    color: #444;
    margin-bottom: 20px;
}

.policy-section h3 {
    font-size: 1.4em;
    color: #555;
    margin: 20px 0 15px;
}

.policy-section p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.policy-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-section ul li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.contact-info {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 100px 0 40px; /* Adjusted for mobile */
    }

    .privacy-policy-section h1 {
        font-size: 2em;
    }

    .policy-section h2 {
        font-size: 1.5em;
    }

    .policy-section h3 {
        font-size: 1.2em;
    }
}

.policy-content {
    line-height: 1.8;
}

.policy-content p {
    margin-bottom: 1.5em;
}

.policy-content strong {
    font-weight: 600;
}

.policy-section h3 {
    color: #555;
    margin: 1.5em 0 0.5em;
}

.policy-footer {
    margin-top: 2em;
    padding-top: 1em;
    border-top: 1px solid #eee;
}

.policy-content ul {
    list-style-type: disc;
    padding-left: 2em;
    margin: 1em 0;
}

.policy-content ul li {
    margin-bottom: 0.5em;
}
