/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header */
.header {
    background-color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2c3e50;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Navigation */
.nav {
    margin-left: auto;
}

.nav a {
    color: #666;
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #2c3e50;
}

/* Main content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero section */
.hero {
    text-align: center;
    margin-bottom: 4rem;
}

.hero h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Links grid */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.link-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15), 0 0 0 1px rgba(59, 130, 246, 0.1);
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    cursor: pointer;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 197, 253, 0.05) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.25), 0 0 20px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.4);
}

.link-card:hover::before {
    opacity: 1;
}

.link-card:active {
    transform: translateY(-1px);
}

.link-card h3 {
    font-size: 1.1rem;
    color: #1e40af;
    margin-bottom: 0.5rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.link-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.link-card:hover h3 {
    color: #1d4ed8;
}

/* Contact form */
.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: 0 auto 4rem auto;
    max-width: 600px;
}

.contact-form h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 300;
}

.contact-form p {
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
    background-color: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    font-weight: 500;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Thank you page */
.thank-you-page {
    max-width: 700px;
}

.thank-you-content {
    text-align: center;
}

.success-icon {
    margin: 0 auto 2rem auto;
    width: 64px;
    height: 64px;
}

.thank-you-content h2 {
    color: #10b981;
    margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.next-steps {
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.steps-grid {
    display: grid;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.step-number {
    background: #3b82f6;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.step-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.helpful-resources {
    margin-bottom: 3rem;
    text-align: left;
}

.helpful-resources h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.helpful-resources > p {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #666;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.resource-links a {
    color: #3b82f6;
    text-decoration: none;
    padding: 0.75rem;
    background: #f1f5f9;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 4px solid #3b82f6;
}

.resource-links a:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.resource-links strong {
    color: #1e40af;
}

.home-button {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.home-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Content pages */
.content-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.content-page h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.content-page h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin: 2rem 0 1rem 0;
}

.content-page p {
    margin-bottom: 1rem;
    color: #555;
}

.content-page ul {
    margin: 1rem 0 1rem 2rem;
    color: #555;
}

.content-page li {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-nav {
    margin-bottom: 1.5rem;
}

.footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: #ecf0f1;
}

.disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        margin-left: 0;
    }

    .nav a {
        margin: 0 0.5rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .main-content {
        padding: 2rem 1rem;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }

    .content-page {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .contact-form {
        margin: 0 1rem 4rem 1rem;
        padding: 2rem 1.5rem;
    }

    .resource-links {
        gap: 0.5rem;
    }

    .resource-links a {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .steps-grid {
        gap: 1rem;
    }

    .step {
        padding: 0.75rem;
    }

    .footer-nav a {
        display: block;
        margin: 0.5rem 0;
    }
}