:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background: #ffffff;
    --light-background: #f3f4f6;
    --spacing-unit: 1rem;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

/* Buttons */
.primary-button, .cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.primary-button:hover, .cta-button:hover {
    background-color: var(--secondary-color);
}

.cta-button {
    background-color: var(--primary-color);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--background);
}

.services h2, .approach h2, .insights h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 var(--spacing-unit);
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Approach Section */
.approach {
    padding: 5rem 0;
    background-color: var(--light-background);
}

.approach-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.approach-text ul {
    list-style: none;
    margin-top: 1rem;
}

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

.approach-text li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Insights Section */
.insights {
    padding: 5rem 0;
    background-color: var(--background);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.insight-card {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.insight-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--light-background);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-family: inherit;
}

.contact-form textarea {
    min-height: 150px;
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
}

.form-message.error {
    background-color: #fee2e2;
    color: #b91c1c;
}

/* Service Pages */
.service-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto;
}

.service-content {
    padding: 4rem 0;
}

.service-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-description h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.service-description h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.service-description p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.service-description ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-description li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-description li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.service-cta {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--light-background);
    border-radius: 1rem;
    text-align: center;
}

.service-cta h3 {
    margin-bottom: 1rem;
}

.service-cta p {
    margin-bottom: 1.5rem;
}

.sidebar-box {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.sidebar-box h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.sidebar-box ul {
    list-style: none;
}

.sidebar-box li {
    margin-bottom: 0.75rem;
}

.sidebar-box a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-box a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-hero h1 {
        font-size: 2.5rem;
    }

    .service-description h2 {
        font-size: 1.75rem;
    }
}

/* Resource Pages */
.resource-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

.resource-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.resource-subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto;
}

.resource-content {
    padding: 4rem 0;
}

.resource-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

.resource-article h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.resource-article h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--text-color);
}

.resource-article h4 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.resource-article p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
    line-height: 1.7;
}

.resource-article ul,
.resource-article ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.resource-article li {
    margin-bottom: 0.75rem;
    color: var(--light-text);
}

.resource-article strong {
    color: var(--text-color);
}

.assessment-section {
    background: var(--light-background);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.assessment-section h4 {
    margin-top: 0;
}

.resource-template {
    background: var(--light-background);
    padding: 2rem;
    border-radius: 1rem;
    margin: 2rem 0;
}

.resource-template pre {
    font-family: 'Inter', monospace;
    white-space: pre-wrap;
    color: var(--text-color);
    line-height: 1.5;
}

.resource-tips {
    border: 2px solid var(--primary-color);
    padding: 2rem;
    border-radius: 1rem;
    margin: 2rem 0;
}

.resource-tips h3 {
    margin-top: 0;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .resource-hero h1 {
        font-size: 2.5rem;
    }

    .assessment-section,
    .resource-template,
    .resource-tips {
        padding: 1.5rem;
    }
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-info h3 {
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        justify-content: center;
    }
}
