* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: white;
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* HEADER STYLES */
header {
    text-align: center;
    color: #333;
    margin-bottom: 50px;
    padding: 30px 0;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #1a73e8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

header h1 a {
    color: #1a73e8;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

header h1 a:hover {
    text-decoration: none;
}

header h1 img {
    display: block;
    max-width: 100px;
    height: auto;
}

.tagline {
    font-size: 1.3em;
    color: #666;
    margin-bottom: 30px;
}

header .page-title {
    font-size: 1.1em;
    color: #999;
    margin-top: 10px;
}

header .last-updated {
    color: #666;
    font-size: 0.95em;
}

/* MAIN CONTENT */
.content {
    background-color: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    margin-bottom: 30px;
}

h2 {
    font-size: 1.8em;
    color: #333;
    margin-top: 30px;
    margin-bottom: 20px;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

h2:first-child {
    margin-top: 0;
}

/* FEATURE CARDS */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.feature h3 {
    color: #667eea;
    margin-bottom: 10px;
    margin-top: 0;
    font-size: 1.1em;
}

.feature p {
    color: #666;
    font-size: 0.95em;
    margin: 0;
}

h3 {
    font-size: 1.3em;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
}

ul, ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
}

a {
    color: #1a73e8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.highlight {
    background-color: #fff3cd;
    padding: 15px;
    border-left: 4px solid #ffc107;
    margin: 15px 0;
}

.important {
    background-color: #f8d7da;
    padding: 15px;
    border-left: 4px solid #dc3545;
    margin: 15px 0;
    color: #721c24;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.data-table th,
.data-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.data-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.data-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* FOOTER */
.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
    color: #666;
    font-size: 0.9em;
}

.footer a {
    color: #1a73e8;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* CONTACT FORM STYLES */
.contact-section {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
}

.contact-section a {
    color: #1a73e8;
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}

/* CRISIS RESOURCES */
.crisis-section {
    background-color: #f8d7da;
    border: 1px solid #dc3545;
    border-radius: 5px;
    padding: 20px;
    margin: 20px 0;
}

.crisis-section h3 {
    color: #721c24;
    margin-top: 0;
}

.crisis-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.crisis-links > div {
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
}

.crisis-links strong {
    color: #721c24;
}

.crisis-links a {
    display: block;
    margin: 8px 0;
    color: #721c24;
    font-weight: 500;
}

.crisis-links a:hover {
    text-decoration: underline;
}

/* LEGAL LINKS */
.legal-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.legal-link {
    background-color: #f0f7ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #1a73e8;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.legal-link:hover {
    background-color: #e8f1ff;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.15);
    text-decoration: none;
}

.legal-link h3 {
    color: #1a73e8;
    margin-top: 0;
}

.legal-link p {
    color: #666;
    font-size: 0.95em;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }

    .content {
        padding: 20px;
    }

    header h1 {
        font-size: 1.8em;
    }

    header h1 img {
        max-width: 60px;
    }

    .tagline {
        font-size: 1.1em;
    }

    h2 {
        font-size: 1.3em;
    }

    .crisis-links {
        grid-template-columns: 1fr;
    }

    .legal-links {
        grid-template-columns: 1fr;
    }

    .data-table {
        font-size: 0.9em;
    }

    .data-table th,
    .data-table td {
        padding: 8px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .feature {
        padding: 15px;
    }

    .feature h3 {
        font-size: 1em;
    }

    .feature p {
        font-size: 0.9em;
    }
}
