/* General Body Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    background-color: #f4f7f6;
    color: #333;
}

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

/* Header Styles */
header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0056b3;
    text-decoration: none;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

header nav ul li a:hover,
header nav ul li a.active {
    color: #0056b3;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #0056b3, #007bff);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Search Form */
.search-form {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    overflow: hidden;
}

.search-form input[type="text"] {
    width: 100%;
    padding: 15px 25px;
    border: none;
    font-size: 1rem;
    outline: none;
}

.search-form button {
    padding: 0 30px;
    border: none;
    background-color: #ffc107;
    color: #333;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-form button:hover {
    background-color: #e0a800;
}

/* Policies Section */
main {
    padding: 40px 0;
}

.policies h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.policy-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.policy-card h3 {
    font-size: 1.4rem;
    color: #0056b3;
    margin-top: 0;
    margin-bottom: 15px;
}

.policy-card .policy-content {
    flex-grow: 1;
    margin-bottom: 15px;
}

.policy-card p {
    margin: 0 0 10px;
    color: #555;
}

.policy-card .policy-terms {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-top: auto;
    font-size: 0.9rem;
}

.policy-card .policy-terms h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}

.policy-card .policy-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 15px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.policy-card .policy-link:hover {
    background-color: #0056b3;
}

.no-results {
    text-align: center;
    font-size: 1.2rem;
    color: #777;
    padding: 50px 0;
}

/* Footer Styles */
footer {
    background: #343a40;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}