/* CSS Reset & General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: #1c3d5f; /* Dark blue background for main area */
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* --- Header Section --- */
header {
    background: linear-gradient(to bottom, #f9f9f9 0%, #dcdcdc 100%);
    padding: 25px 0 15px 0;
    position: relative;
    z-index: 10;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 80px; /* Offset to match image layout */
}

@media (max-width: 768px) {
    .header-container {
        padding-left: 0;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    
    .nav-container {
        padding-left: 0 !important;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .content-container {
        width: 95%;
        padding: 10px;
    }
}

/* Logo Construction */
.logo-wrapper {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

/* Group that gets the reflection effect */
.reflect-group {
    display: flex;
    align-items: flex-end;
    -webkit-box-reflect: below -10px linear-gradient(to bottom, rgba(255,255,255,0) 60%, rgba(255,255,255,0.7) 100%);
}

/* Chart Bars */
.chart-icon {
    display: flex;
    align-items: flex-end;
    margin-right: 5px;
    margin-bottom: 2px;
    gap: 1px;
}

.bar {
    width: 9px;
    box-shadow: inset -1px -1px 2px rgba(0,0,0,0.2), inset 1px 1px 2px rgba(255,255,255,0.5);
}

.bar-blue {
    height: 12px;
    background: linear-gradient(to bottom, #7aafe5, #2f69be);
}

.bar-yellow {
    height: 18px;
    background: linear-gradient(to bottom, #f3d47c, #e29f17);
}

.bar-red {
    height: 25px;
    background: linear-gradient(to bottom, #e35a5b, #b91516);
}

/* Logo Typography */
.logo-text-main {
    font-family: 'Arial Black', Impact, sans-serif;
    font-size: 38px;
    color: #1e5ba8; /* Distinct blue */
    letter-spacing: -1.5px;
    line-height: 1;
    text-shadow: 1px 1px 0px rgba(255,255,255,0.8);
}

.logo-text-sub {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: #4a4a4a;
    margin-left: -2px;
    line-height: 1;
    margin-bottom: 4px;
}

/* The green "100% free" text placed absolutely to avoid reflection */
.free-text {
    position: absolute;
    bottom: -12px;
    right: 0;
    color: #3f9000;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.5px;
}


/* --- Navigation Section --- */
nav {
    background: linear-gradient(to bottom, #398be5 0%, #0d5aa7 100%);
    border-top: 1px solid #7cb7f5; /* Light top edge highlight */
    border-bottom: 2px solid #083464; /* Dark bottom edge shadow */
    box-shadow: 0 3px 5px rgba(0,0,0,0.3);
    position: relative;
    z-index: 5;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 110px; /* Align with logo */
    display: flex;
}

nav a {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    padding: 10px 18px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
    letter-spacing: 0.5px;
}

nav a:hover {
    background-color: rgba(255,255,255,0.1);
}


/* --- Main Content Section --- */
main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    padding-top: 35px; /* Spacing below nav bar */
    padding-bottom: 35px;
}

.content-container {
    width: 88%;
    max-width: 1400px; /* Large container mimicking the image */
    background-color: #f4f4f4;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.4);
    /* Min-height to ensure it looks like a page template even when empty */
    min-height: calc(100vh - 160px); 
    padding: 20px;
}

/* Search Box Styles */
.search-box {
    text-align: center;
    margin: 20px 0;
}

.search-input {
    padding: 10px;
    font-size: 18px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.search-btn {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #e35a5b;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.search-btn:hover {
    background-color: #b91516;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #e0e0e0;
}

.badge {
    padding: 4px 8px;
    border-radius: 4px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.badge-safe { background-color: #28a745; }
.badge-neutral { background-color: #6c757d; }
.badge-nuisance { background-color: #fd7e14; }
.badge-dangerous { background-color: #dc3545; }

.recent-searches {
    margin-top: 40px;
}

/* --- Footer Section --- */
.footer {
    background-color: #1c3d5f;
    color: #ffffff;
    padding: 40px 0;
    margin-top: auto;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
}
.footer-col h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
}
.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #e2e8f0;
    font-weight: 600;
}
.footer-col p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid #334155;
    margin-top: 30px;
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
}
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* --- Phone Page Styles --- */
/* Mimic Tailwind Utilities */
.bg-white { background-color: #fff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-primary { background-color: #1e5ba8; }
.bg-secondary { background-color: #1c3d5f; }
.text-white { color: #fff; }
.text-gray-600 { color: #4b5563; }
.text-gray-800 { color: #1f2937; }
.text-primary { color: #1e5ba8; }
.text-secondary { color: #1c3d5f; }
.text-red-500 { color: #ef4444; }
.text-blue-500 { color: #3b82f6; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.border { border-width: 1px; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-x-3 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.75rem; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.w-full { width: 100%; }
.w-1_3 { width: 33.333333%; }
.hidden { display: none; }

.bg-green-500 { background-color: #22c55e; }
.bg-orange-500 { background-color: #f97316; }
.bg-red-600 { background-color: #dc2626; }
.bg-gray-500 { background-color: #6b7280; }

.bg-green-100 { background-color: #d1fae5; }
.text-green-800 { color: #065f46; }
.bg-red-100 { background-color: #fee2e2; }
.bg-yellow-100 { background-color: #fef3c7; }
.text-yellow-600 { color: #d97706; }
.text-green-600 { color: #059669; }

/* Custom badge colors */
.bg-safe { background-color: #28a745; color: white; }
.bg-neutral { background-color: #6c757d; color: white; }
.bg-nuisance { background-color: #fd7e14; color: white; }
.bg-dangerous { 
    background-color: #dc3545; 
    color: white;
    animation: blinking 1.5s infinite;
}

@keyframes blinking {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.radio-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

@media (max-width: 768px) {
    .radio-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

.radio-group input[type="radio"] {
    display: none;
}

.radio-group label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
    color: white;
    text-align: center;
    width: 100%;
    font-size: 14px;
    height: 100%;
}

/* Default States (Unchecked) */
.radio-group label.lbl-unknown { background-color: #cbd5e1; color: #334155; } /* Slate 300 */
.radio-group label.lbl-scam { background-color: #ef4444; } /* Red 500 */
.radio-group label.lbl-spam { background-color: #f97316; } /* Orange 500 */
.radio-group label.lbl-safe { background-color: #3b82f6; } /* Blue 500 */
.radio-group label.lbl-tele { background-color: #f59e0b; } /* Amber 500 */

/* Hover States */
.radio-group label:hover { opacity: 0.9; }

/* Checked State - Add a dark border or shadow to indicate selection */
.radio-group input[type="radio"]:checked + label {
    box-shadow: inset 0 0 0 3px rgba(0,0,0,0.2);
    transform: scale(0.98);
    font-weight: bold;
}

.hero-banner {
    margin-top: -20px;
    margin-left: -20px;
    margin-right: -20px;
    padding: 18px 0;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(135deg, #1e5ba8 0%, #163b6f 100%);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.2);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.hero-location {
    font-size: 1.05rem;
    font-weight: 600;
    opacity: 0.95;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.meta-item {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meta-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    opacity: 0.8;
}

.meta-value {
    font-size: 14px;
    font-weight: 700;
}

.summary-text {
    line-height: 1.7;
    font-size: 15px;
}

.info-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #e5e7eb;
}

.info-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.info-label {
    width: 120px;
    color: #6b7280;
    font-size: 14px;
}

.info-value {
    font-weight: 600;
    color: #111827;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.badge-muted {
    background-color: #f3f4f6;
    color: #6b7280;
}

.cta-crystal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 18px;
    border-radius: 16px;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
    box-shadow: 0 12px 24px rgba(124, 58, 237, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    animation: crystalPulse 2.6s ease-in-out infinite;
}

.cta-crystal::after {
    content: '';
    position: absolute;
    inset: -40% -60%;
    background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0) 60%);
    transform: translateX(-30%);
    animation: crystalShine 3.8s linear infinite;
    pointer-events: none;
}

.cta-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

@keyframes crystalPulse {
    0%, 100% { transform: translateY(0); box-shadow: 0 12px 24px rgba(124, 58, 237, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.2); }
    50% { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(124, 58, 237, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.3); }
}

@keyframes crystalShine {
    0% { transform: translateX(-40%) rotate(0deg); opacity: 0.5; }
    50% { transform: translateX(20%) rotate(2deg); opacity: 0.9; }
    100% { transform: translateX(80%) rotate(4deg); opacity: 0.4; }
}

.similar-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s;
    background-color: white;
}

.similar-item:hover {
    background-color: #f9fafb;
}

.similar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.similar-number {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.risk-dot {
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    display: inline-block;
}

.similar-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.comment-card {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.comment-card:hover {
    border-color: #e2e8f0;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.comment-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.comment-avatar {
    width: 38px;
    height: 38px;
    border-radius: 9999px;
    background: #e2e8f0;
    color: #1f2937;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comment-name {
    font-weight: 700;
    color: #111827;
}

.comment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
    padding: 6px 8px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #000;
}

.comment-tags .badge {
    font-size: 11px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #000;
}

.comment-tags .badge-muted {
    background-color: #e2e8f0;
    color: #000;

}

.comment-time {
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.comment-body {
    margin-bottom: 16px;
    color: #1f2937;
}

.comment-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    background: white;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-reply {
    color: #3b82f6;
    border: 1px solid #3b82f6;
}

.btn-reply:hover {
    background-color: #eff6ff;
}

.btn-report {
    color: #ef4444;
    border: 1px solid #ef4444;
}

.btn-report:hover {
    background-color: #fef2f2;
}

.report-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.report-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.report-input:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
    background: #fff;
}

.captcha-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 14px;
    align-items: center;
}

.captcha-image {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
}

.captcha-image img {
    display: block;
    width: 120px;
    height: 40px;
    user-select: none;
    pointer-events: none;
}

.form-error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
    padding: 10px 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
}

.thanks-note {
    color: #16a34a;
    text-align: center;
    font-weight: 600;
}

.comment-report-box {
    margin-top: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px;
    background: #f8fafc;
    display: none;
}

.comment-report-box.active {
    display: block;
}

.comment-report-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.report-reason {
    min-height: 70px;
}

.report-thanks {
    color: #16a34a;
    font-weight: 600;
    text-align: center;
    padding: 6px 0;
}

/* Responsive */
@media (min-width: 768px) {
    .md\:flex-row { flex-direction: row; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:block { display: block; }
    .md\:hidden { display: none; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:col-span-2 { grid-column: span 2 / span 2; }
    .lg\:col-span-1 { grid-column: span 1 / span 1; }
}

/* List styling */
ul.list-disc { list-style-type: disc; padding-left: 1.5rem; }
ol.list-decimal { list-style-type: decimal; padding-left: 1.5rem; }

/* Button transition */
.transition { transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.hover\:bg-blue-600:hover { background-color: #2563eb; }
.hover\:bg-gray-50:hover { background-color: #f9fafb; }
.hover\:underline:hover { text-decoration: underline; }

.comment-box { border-bottom: 1px solid #eee; padding-bottom: 15px; margin-bottom: 15px; }
.comment-box:last-child { border-bottom: none; }

/* --- Home Page Styles --- */
.hero-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f9f9f9 0%, #eef2f5 100%);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.hero-title {
    color: #1e5ba8;
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.hero-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-search-form {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-search-input {
    flex-grow: 1;
    padding: 15px;
    border-radius: 8px 0 0 8px;
    border: 1px solid #ccc;
    font-size: 18px;
    outline: none;
}

.hero-search-btn {
    border-radius: 0 8px 8px 0;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    background-color: #e35a5b;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.home-section { background: white; padding: 30px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); margin-bottom: 30px; }
.section-title { color: #1c3d5f; border-bottom: 2px solid #f0f0f0; padding-bottom: 15px; margin-bottom: 20px; }
.report-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.report-card { border: 1px solid #e5e7eb; border-radius: 12px; padding: 16px; transition: box-shadow 0.2s, transform 0.2s; background: #fff; }
.report-card:hover { box-shadow: 0 12px 20px rgba(15, 23, 42, 0.08); transform: translateY(-2px); }
.report-number { font-weight: 700; font-size: 1.05rem; color: #0d5aa7; text-decoration: none; }
.report-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; font-size: 0.85rem; color: #6b7280; }
.report-badge { padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.3px; }
.badge-safe { background: #dcfce7; color: #166534; }
.badge-nuisance { background: #ffedd5; color: #9a3412; }
.badge-dangerous { background: #fee2e2; color: #991b1b; }
.badge-neutral { background: #e2e8f0; color: #334155; }
.report-snippet { margin-top: 10px; color: #374151; line-height: 1.5; }
.search-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; list-style: none; padding: 0; margin: 0; }
.search-item { padding: 10px 12px; border-radius: 10px; border: 1px solid #e5e7eb; background: #f8fafc; text-align: center; font-weight: 600; color: #0d5aa7; text-decoration: none; display: block; }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.faq-item { padding: 16px; border-radius: 12px; border: 1px solid #e5e7eb; background: #fff; }
.faq-item h3 { color: #1c3d5f; margin-bottom: 8px; font-size: 1rem; }
.faq-item p { color: #475569; line-height: 1.6; margin: 0; }

/* --- Contact Page Styles --- */
.contact-form {
    max-width: 600px;
    margin-top: 20px;
}

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

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* --- Error Page Styles --- */
.error-container {
    text-align: center;
    padding: 60px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.error-icon {
    font-size: 48px;
    color: #dc3545;
    margin-bottom: 20px;
}

.error-title {
    color: #1c3d5f;
    font-size: 2rem;
    margin-bottom: 15px;
}

.error-message {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.back-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #1c3d5f;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.2s;
}

.back-btn:hover {
    background-color: #0d5aa7;
}

.seo-content {
    margin-top: 40px;
    text-align: left;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.seo-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
}

.seo-card h3 {
    color: #1c3d5f;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.seo-card p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}
