/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background-color: #fafafa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 30px 0;
    margin-bottom: 40px;
}

.site-title {
    font-size: 28px;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 20px;
    text-align: center;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
}

.nav-link {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    padding: 5px 0;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #2c2c2c;
}

.nav-link.active {
    color: #2c2c2c;
    font-weight: 500;
}

/* Main content */
.main-content {
    padding-bottom: 60px;
}

.content-section {
    margin-bottom: 50px;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.content-section h2 {
    font-size: 24px;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.4;
}

.content-section h3 {
    font-size: 20px;
    font-weight: 400;
    color: #2c2c2c;
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.content-section p {
    margin-bottom: 18px;
    color: #444;
}

.content-section p:last-child {
    margin-bottom: 0;
}

.intro-section {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

/* Lists */
.simple-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.simple-list li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: #444;
    line-height: 1.7;
}

.simple-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #888;
    font-size: 20px;
}

/* FAQ */
.faq-preview {
    margin: 25px 0;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 12px;
    margin-top: 0;
}

.faq-item p {
    color: #555;
    margin-bottom: 0;
}

.faq-link-text {
    margin-top: 25px;
}

.faq-link-text a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.faq-link-text a:hover {
    color: #2c2c2c;
}

/* Contact form */
.contact-form {
    margin-top: 25px;
    max-width: 500px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #444;
    font-size: 15px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #ffffff;
    color: #333;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #999;
}

.submit-btn {
    padding: 12px 30px;
    font-size: 15px;
    background-color: #555;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.2s ease;
}

.submit-btn:hover {
    background-color: #444;
}

.submit-btn:active {
    background-color: #333;
}

/* Contact info */
.contact-info {
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 12px;
    color: #444;
}

.contact-info strong {
    color: #2c2c2c;
    font-weight: 500;
}

/* Disclaimer */
.disclaimer-section {
    background-color: #f8f8f8;
    border-left: 3px solid #ddd;
}

.disclaimer-text {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin: 0;
}

/* Thank you page */
.thank-you-section {
    text-align: center;
    padding: 60px 30px;
}

.thank-you-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.thank-you-text {
    font-size: 18px;
    color: #444;
    margin-bottom: 15px;
}

.thank-you-secondary {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.back-link {
    margin-top: 30px;
}

.back-link a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.back-link a:hover {
    color: #2c2c2c;
}

/* Footer */
.site-footer {
    background-color: #ffffff;
    border-top: 1px solid #e5e5e5;
    padding: 40px 0;
    margin-top: 60px;
    text-align: center;
}

.site-footer p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 20px;
}

.footer-nav a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #2c2c2c;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .site-header {
        padding: 25px 0;
        margin-bottom: 30px;
    }

    .site-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .main-nav {
        gap: 12px 20px;
    }

    .nav-link {
        font-size: 14px;
    }

    .content-section {
        padding: 30px 20px;
        margin-bottom: 35px;
    }

    .intro-section {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .content-section h2 {
        font-size: 22px;
    }

    .content-section h3 {
        font-size: 18px;
    }

    .intro-text {
        font-size: 16px;
    }

    .thank-you-section {
        padding: 40px 20px;
    }

    .thank-you-section h2 {
        font-size: 26px;
    }

    .contact-form {
        max-width: 100%;
    }

    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .site-title {
        font-size: 22px;
    }

    .main-nav {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .content-section {
        padding: 25px 15px;
    }

    .intro-section {
        padding: 25px 15px;
    }

    .content-section h2 {
        font-size: 20px;
    }

    .content-section h3 {
        font-size: 17px;
    }
}
