/* Reset and base styles */
* {
    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: #ffffff;
}

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

/* Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #355E3B;
}

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

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

.nav-menu a:hover {
    color: #A41034;
}

/* Hero section */
.hero {
    background-color: #355E3B;
    background-image:
        radial-gradient(circle, rgba(164, 16, 52, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    color: white;
    text-align: center;
    padding: 6rem 0;
    position: relative;
}

.hero-headshot {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #A41034;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Section styles */
section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background-color: #f8f9fa;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #355E3B;
    font-weight: 600;
}

section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #A41034;
}

/* About section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-headshot {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #355E3B;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-content em {
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
    margin: 0.5rem 0;
}

/* Experience section */
.experience-content {
    max-width: 900px;
    margin: 0 auto;
}

.career-timeline {
    margin-bottom: 3rem;
}

.timeline-item {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #A41034;
}

.timeline-item h4 {
    color: #A41034;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.timeline-item ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.timeline-item li {
    margin-bottom: 0.5rem;
}

.achievements {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.education {
    background: white;
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.education li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.education li:last-child {
    border-bottom: none;
}

.expertise-areas {
    margin-top: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.expertise-areas li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ecf0f1;
    font-size: 1.1rem;
}

.expertise-areas li:last-child {
    border-bottom: none;
}

.expertise-areas em {
    color: #7f8c8d;
    font-style: italic;
}

/* Services section */
.services-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    border-top: 4px solid #A41034;
}

.service-item h3 {
    color: #A41034;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Contact section */
.contact {
    background: #355E3B;
    color: white;
}

.contact h2 {
    color: white;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.contact-content em {
    color: #bdc3c7;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
    margin: 0.5rem 0;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-info h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #fff;
    text-decoration: none;
}

.contact-details a:hover {
    color: #f0f0f0;
    text-decoration: underline;
}

.contact-note {
    font-style: italic;
    margin-top: 1rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background: #A41034;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .hero-headshot {
        width: 200px;
        height: 200px;
        margin-bottom: 1.5rem;
    }

    .about-headshot {
        width: 140px;
        height: 140px;
        margin-bottom: 1.5rem;
    }

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

    .hero h2 {
        font-size: 1.2rem;
    }

    section {
        padding: 3rem 0;
    }

    section h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}