﻿body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: #f9fafb;
}

.search-header {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.search-header h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.search-header p {
    font-size: 1.6em;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    color: #fff;
}

.logo-bar {
    background: #262e39;
    padding: 20px;
    text-align: center;
}

.logo-bar img {
    width: 250px;
    height: auto;
    padding-top: 10px;
}

.search-container {
    max-width: 900px;
    margin: -30px auto 60px;
    padding: 0 20px;
}

.search-box-wrapper {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    transition: color 0.3s;
}

.back-link:hover {
    color: #229954;
}

.search-tips {
    background: #f0f9f4;
    border-left: 4px solid #27ae60;
    padding: 20px;
    border-radius: 6px;
    margin-top: 30px;
}

.search-tips h3 {
    color: #27ae60;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.search-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-tips li {
    padding: 8px 0;
    color: #555;
}

.search-tips li:before {
    content: '✓ ';
    color: #27ae60;
    font-weight: bold;
    margin-right: 8px;
}

footer {
    background: #262e39;
    color: #9ca3af;
    padding: 40px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #27ae60;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    font-size: 0.9em;
}

.footer-bottom p {

    color: #9ca3af;

}

@media (max-width: 768px) {
    .search-header h1 {
        font-size: 2em;
    }

    .search-box-wrapper {
        padding: 25px;
    }

    .logo-bar img {
        width: 250px;
    }
}