* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
}

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

/* Header */
header {
    background: #ffffff;
    border-bottom: 2px solid #e5e7eb;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e3a8a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

nav a {
    font-family: 'Source Sans Pro', sans-serif;
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: #1e3a8a;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    padding: 4rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.headshot {
    width: 280px;
    height: 350px;
    border-radius: 8px;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-text h1 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.email-signup {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    max-width: 400px;
}

.email-signup h3 {
    font-family: 'Source Sans Pro', sans-serif;
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.email-form {
    display: flex;
    gap: 1rem;
}

.email-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
}

.btn-primary {
    background: #dc2626;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background: #b91c1c;
}

/* Value Proposition */
.value-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.section-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 2rem;
    text-align: center;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid #dc2626;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.value-item:hover {
    transform: translateY(-2px);
}

.value-item h3 {
    font-family: 'Source Sans Pro', sans-serif;
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Articles Section */
.articles-section {
    padding: 3rem 0;
    background: #ffffff;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.article-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.article-card h3 {
    font-family: 'Source Sans Pro', sans-serif;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.article-meta {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* About Section */
.about-section {
    padding: 3rem 0;
    background: #f8fafc;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.credentials {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.credentials h3 {
    font-family: 'Source Sans Pro', sans-serif;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.credentials ul {
    list-style: none;
    padding-left: 0;
}

.credentials li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.credentials li:before {
    content: "•";
    color: #1e3a8a;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Resources Section */
.resources-section {
    padding: 3rem 0;
    background: #ffffff;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.resource-item h3 {
    font-family: 'Source Sans Pro', sans-serif;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 3rem 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.contact-info h3 {
    font-family: 'Source Sans Pro', sans-serif;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.contact-details {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.contact-details p {
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: #1e3a8a;
    color: #ffffff;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .headshot {
        width: 250px;
        height: 300px;
        margin: 0 auto;
    }

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

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

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

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

    .email-form {
        flex-direction: column;
    }
}