* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

/* Icon Badge Styling */
.icon-badge {
    margin-bottom: 1.5rem;
}

.icon-badge i {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.15);
    padding: 20px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.icon-badge:hover i {
    transform: scale(1.1);
}

/* Arrow Styling */
.arrow {
    font-size: 1.5rem;
    color: #0d6efd;
    font-weight: 300;
    flex-shrink: 0;
    margin-right: 0.5rem;
}

.point-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.point-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

/* National Frameworks Section */
.frameworks-section {
    padding: 5rem 0;
    background-color: #fff;
}

.frameworks-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.frameworks-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.frameworks-image img,
.hosting-image img,
.protection-image img,
.evidence-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Help Section */
.help-section {
    background-color: #f8f9fa;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.help-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.help-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.help-content p {
    font-size: 0.95rem;
    color: #666;
}

.btn-primary {
    background-color: #0d6efd;
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
}

.btn-white {
    background-color: #fff;
    color: #0d6efd;
    border: 2px solid #fff;
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

/* Hosting Health Data Section */
.hosting-section {
    padding: 5rem 0;
    background-color: #fff;
}

.hosting-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hosting-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

/* Data Protection Section */
.protection-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.protection-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.protection-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

/* Evidence Section */
.evidence-section {
    padding: 5rem 0;
    background-color: #fff;
}

.evidence-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.evidence-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

/* Quote Section */
.quote-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #d4f1f4 0%, #a8d8ea 100%);
}

.quote-content {
    position: relative;
    text-align: center;
    padding: 2rem;
}

.quote-icon-left,
.quote-icon-right {
    font-size: 3rem;
    color: #0d6efd;
    opacity: 0.3;
}

.quote-icon-left {
    position: absolute;
    top: 0;
    left: 10%;
}

.quote-icon-right {
    position: absolute;
    bottom: 0;
    right: 10%;
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.6;
    color: #1a1a1a;
    margin: 2rem auto;
    max-width: 900px;
}

.quote-author {
    display: block;
    font-size: 1.1rem;
    color: #0d6efd;
    font-weight: 600;
    font-style: normal;
    margin-top: 1.5rem;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background-color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.stat-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stat-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1.5rem;
    color: #1a1a1a;
    text-align: center;
}

/* Opening Quote Section */
.opening-quote-section {
    padding: 3rem 0 1rem;
    background-color: #fff;
}

.quote-mark {
    font-size: 4rem;
    color: #0d6efd;
    opacity: 0.4;
}

/* Final Banner Section */
.final-banner-section {
    background: linear-gradient(135deg, #a8d8ea 0%, #d4f1f4 100%);
    padding: 5rem 0;
}

.final-banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.banner-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.7;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #002147;
    margin-bottom: 2rem;
}

.final-banner-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 968px) {
    .frameworks-content,
    .hosting-content,
    .protection-content,
    .evidence-content,
    .final-banner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .frameworks-text h2,
    .hosting-text h2,
    .protection-text h2,
    .evidence-text h2 {
        font-size: 1.6rem;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .quote-text {
        font-size: 1.2rem;
    }

    .help-section .container {
        flex-direction: column;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .section-title {
        font-size: 1.75rem;
    }

    .banner-title {
        font-size: 2rem;
    }

    .quote-text {
        font-size: 1.1rem;
    }

    .icon-badge i {
        width: 60px;
        height: 60px;
        font-size: 2rem !important;
        padding: 15px;
    }

    .btn-primary,
    .btn-white {
        width: 100%;
    }
}

/* Icon specific colors */
.frameworks-section .icon-badge i {
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.1);
}

.hosting-section .icon-badge i {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.protection-section .icon-badge i {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

.evidence-section .icon-badge i {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}