
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom right, #6a11cb, #2575fc);
    color: #fff;
    background-image: url('/assets/hero-background.png');
    background-size: cover;
    background-position: center;
}

header nav {
    background: transparent;
    padding: 1.5em 0;
    text-align: center;
}

header nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

main {
    text-align: center;
    padding: 3em 1em;
}

h1, h2 {
    margin: 0.5em 0;
}

input[type="text"], input[type="email"], input[type="password"], select {
    padding: 0.75em;
    border-radius: 8px;
    border: none;
    margin: 0.5em;
    width: 250px;
}

button {
    padding: 0.75em 1.5em;
    background-color: #007bff;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
}

footer {
    text-align: center;
    padding: 1.5em;
    background: rgba(0,0,0,0.2);
    margin-top: 2em;
}

table {
    width: 100%;
    background: white;
    color: black;
    border-collapse: collapse;
    margin-top: 2em;
}

table th, table td {
    padding: 0.75em;
    border: 1px solid #ccc;
}

.popular-searches {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 2em 0;
}

.popular-card {
    background: white;
    color: black;
    padding: 1em;
    border-radius: 12px;
    text-align: center;
    width: 140px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.popular-card img {
    width: 40px;
    height: auto;
    margin-bottom: 0.5em;
}
.pricing-section {
    padding: 3em 1em;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.pricing-title {
    font-size: 2.6em;
    font-weight: 700;
    margin-bottom: 1.5em;
    color: #fff;
    letter-spacing: -1px;
}
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
}
.pricing-card {
    background: #fff;
    color: #222;
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 rgba(100,60,255,0.09), 0 2px 8px 0 rgba(60,120,255,0.03);
    padding: 2.5em 2em 2em 2em;
    max-width: 260px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.18s;
}
.pricing-card:hover {
    transform: translateY(-8px) scale(1.025);
    box-shadow: 0 8px 40px 0 rgba(100,60,255,0.14), 0 4px 16px 0 rgba(60,120,255,0.08);
}
.pricing-card.highlight {
    border: 2px solid #6a11cb;
}
.pricing-card h3 {
    font-size: 1.4em;
    color: #2575fc;
    margin-bottom: 0.5em;
    margin-top: 0;
}
.price {
    font-size: 2.3em;
    font-weight: 700;
    margin: 0.6em 0 1.2em 0;
    color: #6a11cb;
}
.price span {
    font-size: 0.45em;
    font-weight: 400;
    color: #888;
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2em 0;
}
.pricing-card ul li {
    margin-bottom: 0.7em;
    font-size: 1em;
    color: #444;
}
.pricing-btn {
    display: inline-block;
    background: linear-gradient(90deg, #6a11cb, #2575fc 95%);
    color: #fff;
    padding: 0.9em 2em;
    border-radius: 9px;
    font-weight: 600;
    font-size: 1em;
    letter-spacing: .03em;
    text-decoration: none;
    transition: background 0.14s, transform 0.14s;
    box-shadow: 0 2px 10px 0 rgba(60,80,255,0.07);
}
.pricing-btn:hover {
    background: linear-gradient(90deg, #2575fc, #6a11cb 95%);
    transform: translateY(-2px) scale(1.03);
}
.pricing-card.custom .pricing-btn {
    background: #fff;
    color: #6a11cb;
    border: 2px solid #6a11cb;
}
.pricing-card.custom .pricing-btn.alt:hover {
    background: #6a11cb;
    color: #fff;
}
@media (max-width: 900px) {
    .pricing-cards { flex-direction: column; align-items: center; gap: 1.5em; }
}
.search-section {
    max-width: 520px;
    margin: 3em auto 2em auto;
    padding: 2em 1.5em 2.5em 1.5em;
    background: rgba(255,255,255,0.93);
    border-radius: 22px;
    box-shadow: 0 8px 36px 0 rgba(80,60,220,0.10);
    text-align: left;
}
.search-title {
    text-align: center;
    font-size: 2em;
    font-weight: 700;
    color: #2575fc;
    margin-bottom: 1.8em;
}
.search-form {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
}
.search-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 1em 2%;
    margin-bottom: 0.5em;
}
.search-field {
    flex: 1 1 45%;
    min-width: 170px;
    display: flex;
    flex-direction: column;
}
.search-field label {
    font-size: 1em;
    font-weight: 500;
    color: #222;
    margin-bottom: 0.4em;
}
.search-input {
    background: #f6f8fd;
    border: 1.5px solid #e4e7f7 !important;
    border-radius: 9px !important;
    padding: 0.7em 1em !important;
    font-size: 1em;
    margin-bottom: 0 !important;
    color: #222;
    width:auto !important;
    transition: border .2s;
}
.search-input:focus {
    border: 1.5px solid #6a11cb;
    outline: none;
}
.search-advanced-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5em;
    margin: 1.1em 0 0.7em 0;
    align-items: center;
}
.search-checkbox {
    font-size: 1em;
    color: #444;
    display: flex;
    align-items: center;
    gap: 0.5em;
}
.plan-lock {
    color: #6a11cb;
    font-size: 1.1em;
    cursor: pointer;
    margin-left: 0.25em;
}
.upgrade-notice {
    margin-top: 1.2em;
    color: #6a11cb;
    font-weight: 500;
    background: #f6f8fd;
    border-radius: 7px;
    padding: 0.7em 1em;
    font-size: 1em;
    text-align: center;
    box-shadow: 0 2px 8px rgba(90,60,255,0.03);
}
@media (max-width: 650px) {
    .search-fields { flex-direction: column; gap: 1em; }
}
.search-btn {
    background: linear-gradient(90deg, #6a11cb, #2575fc 95%);
    color: #fff;
    padding: 0.9em 2em;
    border-radius: 9px;
    font-weight: 600;
    font-size: 1em;
    letter-spacing: .03em;
    border: none;
    margin-top: 1em;
    box-shadow: 0 2px 10px 0 rgba(60,80,255,0.07);
    transition: background 0.14s, transform 0.14s;
    cursor: pointer;
}
.search-btn:hover {
    background: linear-gradient(90deg, #2575fc, #6a11cb 95%);
    transform: translateY(-2px) scale(1.03);
}
.results-section {
    padding: 2em 1em 3em 1em;
}
.results-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 1em;
}
.results-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    background: #fff;
    color: #222;
    font-size: 1em;
}
.results-table th, .results-table td {
    padding: 0.85em 0.7em;
    border-bottom: 1px solid #eef2fa;
    text-align: left;
}
.results-table th {
    background: #f4f7fd;
    color: #6a11cb;
    font-weight: 600;
    font-size: 1.05em;
}
.results-table tr:last-child td {
    border-bottom: none;
}
.results-table a {
    color: #2575fc;
    text-decoration: underline dotted;
    transition: color .15s;
}
.results-table a:hover {
    color: #6a11cb;
    text-decoration: underline;
}
.export-status {
    font-size: 1.09em;
    margin-top: 1em;
}
@media (max-width: 650px) {
    .results-table th, .results-table td { padding: 0.65em 0.3em; }
    .results-section { padding: 1em 0.1em 2em 0.1em; }
}
.popular-card {
    background: #fff;
    color: #222;
    border-radius: 14px;
    text-align: center;
    width: 140px;
    box-shadow: 0 4px 14px rgba(60,60,180,0.07);
    padding: 1.2em 0.2em;
    font-weight: 600;
    font-size: 1em;
    margin-bottom: 1em;
}
.popular-card img {
    margin-bottom: 0.7em;
}
@media (max-width: 800px) {
    .how-steps { flex-direction: column; gap:2em; }
}
@media (max-width: 600px) {
    .hero { padding:2em 0 1.5em 0; }
    .search-bar { flex-direction:column; gap:0.7em; padding:1.1em 1em;}
}
