/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: #0066cc;
    transition: color 0.3s ease;
}

a:hover {
    color: #0052a3;
}

/* Header Navigation */
header {
    background-color: #ffffff;
    color: #333;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border-bottom: 1px solid #e8e8e8;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    max-width: 200px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

nav a:hover {
    color: #0066cc;
}

.youtube-link {
    background-color: #ff0000;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
}

.youtube-link:hover {
    background-color: #cc0000;
    color: white;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a3a52 0%, #2d5a7b 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: center;
}

.hero h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #f0f0f0;
}

.btn {
    display: inline-block;
    background-color: #0066cc;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn:hover {
    background-color: #0052a3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,102,204,0.3);
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.news-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: #0066cc;
}

.news-card h3 {
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.news-card p {
    color: #666;
    margin-bottom: 1rem;
}

.news-date {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 5px rgba(0,102,204,0.3);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

input[type="submit"] {
    background-color: #0066cc;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.info-box h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.info-box p {
    margin-bottom: 0.8rem;
    color: #666;
}

.info-box a {
    color: #0066cc;
    font-weight: 600;
}

/* Email Directory Grid */
.email-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.email-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.3s ease;
}

.email-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: #0066cc;
}

.email-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.email-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.email-link {
    display: inline-block;
    background-color: #0066cc;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.email-link:hover {
    background-color: #0052a3;
    color: white;
    transform: translateY(-2px);
}

.email-card p {
    color: #666;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    margin: 2rem 0;
}

.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid #0066cc;
}

.faq-item h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
}

/* Support Form */
.support-form {
    max-width: 600px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Report Form */
.report-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Story Form */
.story-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    background-color: white;
    cursor: pointer;
}

select:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 5px rgba(0,102,204,0.3);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.team-role {
    display: inline-block;
    background-color: #f0f0f0;
    color: #0066cc;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.team-card p {
    color: #666;
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: #f8f8f8;
    color: #333;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid #e8e8e8;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section a {
    color: #666;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #0066cc;
}

.footer-section p {
    font-size: 0.95rem;
    color: #666;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
    color: #999;
    font-size: 0.9rem;
}

.partnership {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    font-weight: 600;
    color: #666;
}

.cookiehost-logo {
    height: 40px;
    width: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .partnership {
        flex-direction: column;
    }
}
