@charset "UTF-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Noto Sans', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #0f172a;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    min-height: 100vh;
    padding: 1.5rem 1rem;
}

.max-width {
    max-width: 28rem;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.header {
    margin-bottom: 1.5rem;
}

.header h1 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.header .subtitle {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.header .date {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.card:first-child {
    box-shadow: none;
    border: none;
}

.card:first-child .card-content {
    background-color: #f1f5f9;
    border-radius: 0.5rem;
}

.card-header {
    padding: 1.5rem 1.5rem 0;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #0f172a;
}

.card-content {
    padding: 1.5rem;
}

.card-content p {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
}

.accordion {
    margin-bottom: 0.5rem;
}

.accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.accordion-trigger {
    width: 100%;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
    border-radius: 0.5rem 0.5rem 0 0;
}

.accordion-trigger:hover {
    background-color: #f8fafc;
}

.accordion-trigger::after {
    content: '+';
    font-size: 1.25rem;
    color: #64748b;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.accordion-trigger.active::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.accordion-content.active {
    max-height: 1000px;
}

.accordion-content-inner {
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
}

.content-section {
    margin-bottom: 0.75rem;
}

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

.content-section h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.content-section p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.content-section ul {
    color: #64748b;
    margin-left: 1.25rem;
    margin-bottom: 0.75rem;
}

.content-section li {
    margin-bottom: 0.25rem;
}

.contact-info {
    background-color: #fff;
    border: 1px solid #25A4AC;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    text-align: center;
}

.contact-info p {
    font-size: 0.875rem;
    color: #475569;
    margin-bottom: 0.25rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info a{
    color: #25A4AC;
    text-decoration: none;
    display: block;
}

.separator {
    height: 1px;
    background-color: #e2e8f0;
    margin: 1.5rem 0;
    border: none;
}

.footer {
    text-align: center;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.space-y-1 > * + * {
    margin-top: 0.25rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

@media (max-width: 640px) {
    .container {
        padding: 1rem 0.75rem;
    }

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

    .card-header, .card-content {
        padding: 1rem;
    }

    .accordion-trigger {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .accordion-content-inner {
        padding:1rem;
    }
}
