/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #E3F2FD;
    font-size: 16px;
}

/* Top Navigation Bar */
.top-nav {
    background-color: #0c5ab3;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    /* height: 50px; */
    width: auto;
    max-width: 200px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 15px rgba(21, 101, 192, 0.2);
    margin-top: 0;
}

/* Header Styles */
.header {
    text-align: center;
    padding: 40px 20px;
    border-bottom: 3px solid #1565C0;
    margin-bottom: 30px;
    background: linear-gradient(to bottom, #E3F2FD 0%, #ffffff 100%);
}

.main-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #1565C0;
    margin-bottom: 15px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.1em;
    color: #424242;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Image Container */
.hero-image-container {
    width: 80%;
    margin: 0 auto 30px auto;
    text-align: center;
    padding: 0 20px;
}

.hero-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.2);
}

/* Section Styles */
section {
    margin-bottom: 40px;
}

h2 {
    font-size: 2em;
    font-weight: 600;
    color: #1565C0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #1565C0;
}

h3 {
    font-size: 1.5em;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 15px;
    margin-top: 30px;
}

/* Introduction Section */
.intro-section {
    padding: 20px 0;
}

.intro-section p {
    margin-bottom: 15px;
    font-size: 1.05em;
    line-height: 1.8;
    color: #444;
}

/* Comparison Tables */
.comparison-section {
    margin-top: 40px;
}

.table-wrapper {
    margin-bottom: 40px;
    overflow-x: auto;
    border-radius: 8px;
}

.table-wrapper h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #1565C0;
    font-weight: 700;
}

.comparison-table {
    width: 100%;
    /* border-collapse: collapse; */
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.25);
    margin-bottom: 0;
    font-size: 0.95em;
    border: 2px solid #1565C0;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
    color: #ffffff;
}

.comparison-table th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 700;
    font-size: 1.05em;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

.comparison-table th:first-child {
    border-top-left-radius: 6px;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.comparison-table th:last-child {
    border-top-right-radius: 6px;
}

.comparison-table th:nth-child(2) {
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.brand-icon {
    height: 24px;
    width: auto;
    vertical-align: middle;
    display: inline-block;
    margin-right: 8px;
}

.recommended-badge {
    display: inline-block;
    background-color: #FFD700;
    color: #000000;
    font-size: 0.65em;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 8px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.comparison-table tbody tr {
    border-bottom: 2px solid #E3F2FD;
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background-color: #E3F2FD;
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(21, 101, 192, 0.15);
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #F5F9FF;
}

.comparison-table tbody tr:nth-child(even):hover {
    background-color: #BBDEFB;
}

.comparison-table tbody tr.button-row {
    background-color: #F5F9FF !important;
    border-bottom: none;
}

.comparison-table tbody tr.button-row:hover {
    background-color: #E3F2FD !important;
    transform: none;
    box-shadow: none;
}

.comparison-table tbody tr.button-row td {
    padding: 20px 15px;
    text-align: center;
    vertical-align: middle;
    border-bottom: none;
}

.comparison-table tbody tr.button-row .feature-name {
    border-right: 2px solid #BBDEFB;
    background-color: #F5F9FF;
    width: 30%;
}

.comparison-table tbody tr.button-row td:not(.feature-name) {
    width: 35%;
}

.comparison-table tbody tr.button-row td:nth-child(2) {
    border-right: 2px solid #BBDEFB;
}

.comparison-table td {
    padding: 16px 15px;
    border-top: none;
    border-left: none;
    border-right: none;
    vertical-align: middle;
    border-bottom: 2px solid #E3F2FD;
}

.comparison-table .feature-name {
    font-weight: 700;
    color: #1565C0;
    background-color: #F5F9FF;
    width: 30%;
    border-right: 2px solid #BBDEFB;
}

.comparison-table td:not(.feature-name) {
    color: #424242;
    width: 35%;
}

.comparison-table td:nth-child(2) {
    border-right: 2px solid #BBDEFB;
}


/* Icon Styles */
.icon-check {
    display: inline-block;
    color: #2E7D32;
    font-weight: bold;
    font-size: 1.4em;
    margin-right: 8px;
    background-color: #C8E6C9;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    vertical-align: middle;
}

.icon-cross {
    display: inline-block;
    color: #C62828;
    font-weight: bold;
    font-size: 1.4em;
    margin-right: 8px;
    background-color: #FFCDD2;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    vertical-align: middle;
}

/* Table Actions - LEARN MORE Button */
.learn-more-btn {
    display: block;
    padding: 12px 35px;
    background-color: #1565C0;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95em;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(21, 101, 192, 0.3);
    text-transform: uppercase;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
}

.learn-more-btn:hover {
    background-color: #0D47A1;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(21, 101, 192, 0.4);
}

.learn-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(21, 101, 192, 0.3);
}

.learn-more-btn.mcafee-btn {
    background-color: #C41230;
}

.learn-more-btn.mcafee-btn:hover {
    background-color: #9D0E26;
    box-shadow: 0 5px 10px rgba(196, 18, 48, 0.4);
}

.learn-more-btn.norton-btn {
    background-color: #FFC72C;
    color: #242424;
}

.learn-more-btn.norton-btn:hover {
    background-color: #FFB300;
    box-shadow: 0 5px 10px rgba(255, 199, 44, 0.4);
}

/* Summary Section */
.summary-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    border: 2px solid #1565C0;
}

.summary-section h2 {
    border-bottom: 3px solid #1565C0;
    padding-bottom: 10px;
    color: #1565C0;
}

.summary-section > p {
    margin-bottom: 25px;
    font-size: 1.05em;
    line-height: 1.8;
    color: #444;
}

.summary-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.summary-box {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(21, 101, 192, 0.2);
    border-left: 5px solid #1565C0;
}

.summary-box h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #1565C0;
    margin-top: 0;
}

.summary-box ul {
    list-style-position: inside;
    padding-left: 0;
}

.summary-box li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #444;
    padding-left: 5px;
}

.summary-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1565C0;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95em;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(21, 101, 192, 0.3);
    text-align: center;
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
}

.summary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(21, 101, 192, 0.4);
}

.summary-btn.mcafee-summary-btn {
    background-color: #C41230;
}

.summary-btn.mcafee-summary-btn:hover {
    background-color: #9D0E26;
    box-shadow: 0 5px 10px rgba(196, 18, 48, 0.4);
}

.summary-btn.norton-summary-btn {
    background-color: #FFC72C;
    color: #242424;
}

.summary-btn.norton-summary-btn:hover {
    background-color: #FFB300;
    box-shadow: 0 5px 10px rgba(255, 199, 44, 0.4);
}

.recommendation {
    font-size: 1.05em;
    line-height: 1.8;
    color: #424242;
    padding: 20px;
    background-color: #ffffff;
    border-left: 5px solid #1565C0;
    border-radius: 4px;
    margin-top: 20px;
    box-shadow: 0 2px 4px rgba(21, 101, 192, 0.15);
}

/* FAQ Section */
.faq-section {
    margin-top: 40px;
    padding-top: 30px;
}

.faq-item {
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(to right, #E3F2FD 0%, #ffffff 100%);
    border-radius: 6px;
    border-left: 5px solid #1565C0;
    box-shadow: 0 2px 4px rgba(21, 101, 192, 0.15);
}

.faq-question {
    font-size: 1.2em;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 12px;
    margin-top: 0;
}

.faq-answer {
    font-size: 1em;
    line-height: 1.8;
    color: #444;
    margin: 0;
}

/* Footer */
.footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 3px solid #1565C0;
    background: linear-gradient(to bottom, #F5F9FF 0%, #E3F2FD 100%);
    padding: 40px 20px;
    border-radius: 8px;
}

.footer .container {
    max-width: 100%;
    padding: 0;
    box-shadow: none;
    background-color: transparent;
    margin: 0;
}

.footer-text {
    font-size: 0.9em;
    color: #424242;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.footer-text strong {
    color: #1565C0;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    font-size: 1em;
}

.footer-nav {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 2px solid #BBDEFB;
    border-bottom: 2px solid #BBDEFB;
}

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

.footer-nav-list li {
    margin: 0;
}

.footer-nav-list a {
    color: #1565C0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: color 0.3s ease;
    padding: 5px 10px;
}

.footer-nav-list a:hover {
    color: #0D47A1;
    text-decoration: underline;
}

.copyright {
    text-align: center;
    color: #757575;
    font-size: 0.85em;
    margin-top: 20px;
    margin-bottom: 0;
    padding-top: 20px;
    border-top: 1px solid #BBDEFB;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .top-nav {
        padding: 12px 0;
    }

    .logo {
        height: 40px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .container {
        padding: 15px;
        margin-top: 0;
    }

    .header {
        padding: 30px 15px;
    }

    .main-title {
        font-size: 1.8em;
    }

    .subtitle {
        font-size: 1em;
    }

    .hero-image-container {
        padding: 0 15px;
        margin-bottom: 25px;
    }

    .hero-image {
        border-radius: 6px;
    }

    h2 {
        font-size: 1.6em;
    }

    h3 {
        font-size: 1.3em;
    }

    .table-wrapper {
        margin-bottom: 30px;
    }

    .comparison-table {
        font-size: 0.85em;
        border-radius: 6px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
    }

    .comparison-table .feature-name {
        width: 35%;
    }

    .comparison-table td:not(.feature-name) {
        width: 32.5%;
    }

    .icon-check,
    .icon-cross {
        width: 24px;
        height: 24px;
        line-height: 24px;
        font-size: 1.2em;
        margin-right: 6px;
    }

    .learn-more-btn {
        padding: 10px 25px;
        font-size: 0.9em;
        max-width: 180px;
    }

    .comparison-table tbody tr.button-row td {
        padding: 18px 12px;
    }

    .brand-icon {
        height: 20px;
    }

    .recommended-badge {
        font-size: 0.6em;
        padding: 2px 6px;
        margin-left: 6px;
    }

    .summary-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .summary-box {
        padding: 20px;
    }

    .summary-btn {
        padding: 10px 25px;
        font-size: 0.9em;
        margin-top: 18px;
    }

    .summary-section {
        padding: 20px;
    }

    .faq-item {
        padding: 15px;
    }

    .faq-question {
        font-size: 1.1em;
    }

    .intro-section p,
    .summary-section > p,
    .recommendation {
        font-size: 1em;
    }

    .footer {
        padding: 30px 15px;
    }

    .footer-text {
        font-size: 0.85em;
    }

    .footer-nav-list {
        gap: 15px;
    }

    .footer-nav-list a {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 35px;
    }

    .main-title {
        font-size: 1.5em;
    }

    .subtitle {
        font-size: 0.95em;
    }

    .hero-image-container {
        padding: 0 12px;
        margin-bottom: 20px;
    }

    .hero-image {
        border-radius: 4px;
    }

    h2 {
        font-size: 1.4em;
    }

    h3 {
        font-size: 1.2em;
    }

    .comparison-table {
        font-size: 0.75em;
    }

    .comparison-table th {
        padding: 12px 8px;
        font-size: 0.9em;
    }

    .comparison-table td {
        padding: 10px 8px;
    }

    .icon-check,
    .icon-cross {
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 1em;
        margin-right: 4px;
    }

    .learn-more-btn {
        padding: 10px 18px;
        font-size: 0.85em;
        max-width: 150px;
    }

    .comparison-table tbody tr.button-row td {
        padding: 15px 8px;
    }

    .brand-icon {
        height: 18px;
    }

    .recommended-badge {
        font-size: 0.55em;
        padding: 2px 5px;
        margin-left: 4px;
    }

    .comparison-table th {
        flex-wrap: wrap;
    }

    .footer-nav-list {
        gap: 15px;
    }

    .footer-nav-list a {
        font-size: 0.9em;
    }

    .summary-box {
        padding: 15px;
    }

    .summary-btn {
        padding: 10px 20px;
        font-size: 0.85em;
        margin-top: 15px;
    }

    .faq-item {
        padding: 12px;
    }

    .footer {
        padding: 25px 12px;
    }

    .footer-text {
        font-size: 0.8em;
    }

    .footer-nav-list {
        flex-direction: column;
        gap: 10px;
    }

    .footer-nav-list a {
        font-size: 0.85em;
    }
}

/* Print Styles */
@media print {
    body {
        background-color: #ffffff;
    }

    .container {
        box-shadow: none;
    }

    .comparison-table {
        page-break-inside: avoid;
    }

    .summary-box {
        page-break-inside: avoid;
    }

    .faq-item {
        page-break-inside: avoid;
    }
}

