/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #fafbfc;
}

/* Header Styles */
.primary-navigation {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-identifier {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2d3748;
}

.brand-emblem {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-right: 0.75rem;
    object-fit: cover;
}

.brand-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #276749;
}

.menu-wrapper {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.navigation-element {
    color: #4a5568;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.navigation-element:hover {
    color: #38a169;
}

/* Main Content */
.content-framework {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.introduction-segment {
    padding: 4rem 0;
    text-align: center;
}

.text-container {
    max-width: 800px;
    margin: 0 auto;
}

.primary-headline {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.description-block {
    background-color: #f7fafc;
    border-left: 4px solid #48bb78;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.explanatory-text {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1rem;
    text-align: left;
}

.explanatory-text:last-child {
    margin-bottom: 0;
}

/* Resource Grid */
.resource-collection {
    padding: 4rem 0;
}

.secondary-headline {
    font-size: 2rem;
    font-weight: 600;
    color: #276749;
    text-align: center;
    margin-bottom: 3rem;
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.reference-card {
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.reference-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #48bb78, #68d391);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.reference-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.2);
    border-color: #48bb78;
}

.reference-card:hover::before {
    transform: translateX(0);
}

.reference-card:hover .card-arrow {
    transform: translateX(4px);
    color: #38a169;
}

.reference-card:active {
    transform: translateY(-2px);
}

.card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.card-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: #276749;
    margin-bottom: 0.5rem;
}

.card-description {
    font-size: 0.9rem;
    color: #718096;
    flex-grow: 1;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.card-link {
    font-size: 0.8rem;
    color: #38a169;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.card-arrow {
    font-size: 1.25rem;
    color: #68d391;
    font-weight: 600;
    align-self: flex-end;
    transition: all 0.3s ease;
    margin-top: auto;
}

/* Contact Form Styles */
.contact-engagement {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 5rem 0;
    margin-top: 3rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-headline {
    font-size: 2rem;
    font-weight: 600;
    color: #276749;
    text-align: center;
    margin-bottom: 1rem;
}

.form-description {
    font-size: 1.125rem;
    color: #4a5568;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select {
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'IBM Plex Sans', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #48bb78;
    box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.1);
}

.form-select {
    cursor: pointer;
}

.submit-button {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'IBM Plex Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.25);
}

.submit-button:active {
    transform: translateY(0);
}

.button-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.submit-button:hover .button-arrow {
    transform: translateX(3px);
}

.privacy-notice {
    font-size: 0.8rem;
    color: #718096;
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

/* Footer */
.site-conclusion {
    background-color: #f7fafc;
    border-top: 1px solid #e2e8f0;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.disclaimer-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #4a5568;
    text-align: center;
    line-height: 1.5;
}

.copyright-notice {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #718096;
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}

/* Document Pages Styles */
.document-wrapper {
    padding: 4rem 0;
}

.document-container {
    max-width: 800px;
    margin: 0 auto;
}

.document-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #276749;
    margin-bottom: 0.5rem;
    text-align: center;
}

.last-updated {
    font-size: 0.9rem;
    color: #718096;
    text-align: center;
    margin-bottom: 3rem;
}

.policy-content {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.section-block {
    margin-bottom: 2.5rem;
}

.section-block:last-child {
    margin-bottom: 0;
}

.section-heading {
    font-size: 1.375rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    border-bottom: 2px solid #68d391;
    padding-bottom: 0.5rem;
}

.policy-paragraph {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

/* Thank You Page Styles */
.gratitude-section {
    padding: 4rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thank-you-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-indicator {
    margin-bottom: 2rem;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(72, 187, 120, 0.3);
}

.checkmark {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
}

.appreciation-headline {
    font-size: 2.5rem;
    font-weight: 600;
    color: #276749;
    margin-bottom: 1.5rem;
}

.confirmation-message {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.main-message {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.next-steps {
    margin-bottom: 3rem;
}

.steps-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 2rem;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.step-content {
    flex-grow: 1;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #276749;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #4a5568;
    line-height: 1.5;
}

.additional-resources {
    margin-bottom: 3rem;
}

.resources-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.mini-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.mini-resource {
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    text-align: left;
}

.mini-resource:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.15);
    border-color: #68d391;
}

.mini-resource h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #276749;
    margin-bottom: 0.5rem;
}

.mini-resource p {
    font-size: 0.875rem;
    color: #718096;
    line-height: 1.4;
}

.return-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.return-button {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.primary-return {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: #ffffff;
}

.primary-return:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.25);
}

.secondary-return {
    background-color: #ffffff;
    color: #276749;
    border: 2px solid #48bb78;
}

.secondary-return:hover {
    background-color: #48bb78;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .reference-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .brand-container {
        padding: 0 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .menu-wrapper {
        gap: 1rem;
    }

    .content-framework {
        padding: 0 1rem;
    }

    .primary-headline {
        font-size: 2rem;
    }

    .introduction-segment {
        padding: 2rem 0;
    }

    .description-block {
        padding: 1.5rem;
    }

    .reference-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .resource-collection {
        padding: 2rem 0;
    }

    /* Document pages responsive */
    .document-wrapper {
        padding: 2rem 0;
    }

    .document-title {
        font-size: 2rem;
    }

    .policy-content {
        padding: 2rem;
    }

    .section-heading {
        font-size: 1.25rem;
    }

    /* Form responsive */
    .contact-engagement {
        padding: 3rem 0;
    }

    .form-container {
        margin: 0 1rem;
        padding: 2rem;
    }

    .form-headline {
        font-size: 1.75rem;
    }

    /* Thank you page responsive */
    .appreciation-headline {
        font-size: 2rem;
    }

    .confirmation-message {
        padding: 2rem;
    }

    .step-list {
        gap: 1.5rem;
    }

    .return-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .brand-emblem {
        width: 32px;
        height: 32px;
    }

    .brand-title {
        font-size: 1.125rem;
    }

    .primary-headline {
        font-size: 1.75rem;
    }

    .explanatory-text {
        font-size: 1rem;
    }

    .reference-grid {
        grid-template-columns: 1fr;
    }

    .reference-card {
        padding: 1.25rem;
    }

    .disclaimer-section {
        padding: 0 1rem;
    }

    .copyright-notice {
        padding: 0 1rem;
        padding-top: 1rem;
    }

    /* Document pages mobile */
    .document-title {
        font-size: 1.75rem;
    }

    .policy-content {
        padding: 1.5rem;
    }

    .section-heading {
        font-size: 1.125rem;
    }

    .policy-paragraph {
        font-size: 0.95rem;
    }

    /* Form mobile */
    .form-container {
        margin: 0 1rem;
        padding: 1.5rem;
    }

    .form-headline {
        font-size: 1.5rem;
    }

    .form-description {
        font-size: 1rem;
    }

    .submit-button {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    /* Thank you page mobile */
    .checkmark-circle {
        width: 60px;
        height: 60px;
    }

    .checkmark {
        font-size: 1.5rem;
    }

    .appreciation-headline {
        font-size: 1.75rem;
    }

    .confirmation-message {
        padding: 1.5rem;
    }

    .main-message {
        font-size: 1.125rem;
    }

    .steps-heading {
        font-size: 1.25rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .mini-resources {
        grid-template-columns: 1fr;
    }

    .return-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}