/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 17px;
    line-height: 1.7;
    color: #222;
    background: #f9f8f5;
}

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

a {
    color: #1a5276;
    text-decoration: underline;
}

a:hover {
    color: #0b3d5e;
}

/* === Header === */
header {
    background: #1a5276;
    color: #fff;
    padding: 30px 0 20px;
    border-bottom: 4px solid #f39c12;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

header .tagline {
    font-size: 1.05rem;
    color: #d5e8f3;
    margin-bottom: 16px;
    font-style: italic;
}

header nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
}

header nav a {
    color: #fdebd0;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: Arial, Helvetica, sans-serif;
}

header nav a:hover {
    text-decoration: underline;
    color: #fff;
}

/* === Main Sections === */
main {
    padding: 30px 0 50px;
}

section {
    margin-bottom: 45px;
}

h2 {
    font-size: 1.6rem;
    color: #1a5276;
    margin-bottom: 14px;
    padding-bottom: 6px;
    border-bottom: 2px solid #d5d8dc;
}

h3 {
    font-size: 1.25rem;
    color: #1a5276;
    margin-bottom: 8px;
}

h4 {
    font-size: 1.1rem;
    color: #333;
    margin: 16px 0 8px;
}

p {
    margin-bottom: 12px;
}

/* === Intro === */
.intro {
    background: #fff;
    border: 1px solid #d5d8dc;
    border-left: 4px solid #f39c12;
    padding: 20px 24px;
    margin-bottom: 35px;
}

/* === Table === */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    background: #fff;
}

th, td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid #d5d8dc;
}

th {
    background: #1a5276;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

tr:hover {
    background: #fef9e7;
}

tr.top-pick {
    background: #fef9e7;
}

.badge {
    display: inline-block;
    background: #27ae60;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 7px;
    border-radius: 3px;
    font-weight: 700;
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 4px;
}

.badge-budget {
    background: #e67e22;
}

.score {
    display: inline-block;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    color: #fff;
    font-size: 0.95rem;
}

.score-high {
    background: #27ae60;
}

.score-mid {
    background: #2980b9;
}

.updated {
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
    margin-top: 8px;
}

/* === Reviews === */
.review {
    background: #fff;
    border: 1px solid #d5d8dc;
    margin-bottom: 30px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a5276;
    color: #fff;
    padding: 14px 20px;
}

.review-header h3 {
    color: #fff;
    margin: 0;
    font-size: 1.2rem;
}

.review-score {
    font-size: 2rem;
    font-weight: 700;
    color: #f39c12;
    white-space: nowrap;
}

.review-score span {
    font-size: 1rem;
    color: #a9cce3;
}

.review-body {
    padding: 20px 24px;
}

.review-details {
    background: #f4f6f7;
    border: 1px solid #e5e8e8;
    padding: 14px 18px;
    margin-bottom: 16px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.92rem;
}

.detail-row {
    display: flex;
    padding: 3px 0;
    border-bottom: 1px dotted #d5d8dc;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    font-weight: 700;
    min-width: 160px;
    color: #555;
}

/* === Pros & Cons === */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 16px 0;
}

.pros, .cons {
    padding: 14px 16px;
    font-size: 0.93rem;
}

.pros {
    background: #eafaf1;
    border: 1px solid #a9dfbf;
}

.cons {
    background: #fdedec;
    border: 1px solid #f5b7b1;
}

.pros h5, .cons h5 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.pros h5 {
    color: #1e8449;
}

.cons h5 {
    color: #c0392b;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
}

.pros li::before {
    content: "\2713 ";
    color: #27ae60;
    font-weight: 700;
}

.cons li::before {
    content: "\2717 ";
    color: #e74c3c;
    font-weight: 700;
}

.pros li, .cons li {
    padding: 2px 0;
}

.verdict {
    background: #fef9e7;
    border-left: 4px solid #f39c12;
    padding: 12px 16px;
    margin-top: 10px;
    font-style: italic;
}

/* === Feature List === */
.feature-list {
    padding-left: 22px;
    margin-bottom: 16px;
}

.feature-list li {
    margin-bottom: 6px;
}

/* === Guide Grid === */
.guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.guide-item {
    background: #fff;
    border: 1px solid #d5d8dc;
    padding: 18px 20px;
}

.guide-item h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: #1a5276;
}

.guide-item p {
    font-size: 0.93rem;
    margin-bottom: 0;
}

/* === FAQ === */
.faq-item {
    background: #fff;
    border: 1px solid #d5d8dc;
    padding: 16px 20px;
    margin-bottom: 12px;
}

.faq-item h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #333;
}

.faq-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: #555;
}

/* === Footer === */
footer {
    background: #1a5276;
    color: #a9cce3;
    padding: 24px 0;
    font-size: 0.9rem;
    font-family: Arial, Helvetica, sans-serif;
}

footer p {
    margin-bottom: 6px;
}

.footer-nav {
    display: flex;
    gap: 18px;
    margin-top: 8px;
}

.footer-nav a {
    color: #d5e8f3;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-nav a:hover {
    text-decoration: underline;
    color: #fff;
}

/* === Breadcrumb === */
.breadcrumb {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 20px;
    padding: 8px 0;
}

.breadcrumb a {
    color: #1a5276;
}

/* === Steps (Install Guide) === */
.install-guide {
    margin-bottom: 30px;
}

.steps {
    margin: 16px 0;
}

.step {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.step:last-child {
    border-bottom: none;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    background: #1a5276;
    color: #fff;
    border-radius: 50%;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.step strong {
    display: block;
    margin-bottom: 2px;
    color: #1a5276;
}

.step p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #555;
}

/* === Contact Form === */
.contact-form {
    max-width: 600px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 5px;
}

.required {
    color: #c0392b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d5d8dc;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 0.95rem;
    color: #333;
    background: #fff;
    border-radius: 3px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5276;
    box-shadow: 0 0 0 2px rgba(26, 82, 118, 0.15);
}

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

.btn {
    display: inline-block;
    background: #1a5276;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 12px 28px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.btn:hover {
    background: #154360;
}

/* === Responsive === */
@media (max-width: 700px) {
    body {
        font-size: 16px;
    }

    header h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.35rem;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .guide-grid {
        grid-template-columns: 1fr;
    }

    .detail-row {
        flex-direction: column;
    }

    .detail-row .label {
        min-width: auto;
        margin-bottom: 1px;
    }

    .review-header {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    table {
        font-size: 0.85rem;
    }

    th, td {
        padding: 8px 10px;
    }
}