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

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #e5e7eb;
    background-color: #111827;
}

.page-container {
    min-height: 100vh;
    background-color: #111827;
    display: flex;
    flex-direction: column;
}

.header {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    min-height: 4rem;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(55, 65, 81, 0.5);
    background-color: #111827;
}

@media (min-width: 1024px) {
    .header {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-link {
    text-decoration: none;
}

.mail-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #34d399;
    filter: drop-shadow(0 0 8px rgba(52, 211, 153, 0.6));
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.375rem;
    flex-wrap: wrap;
}

.site-nav a,
.footer-nav a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.8125rem;
    line-height: 1.2;
    padding: 0.5rem 0.625rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.footer-nav a:hover {
    color: white;
    background-color: rgba(31, 41, 55, 0.85);
}

@media (max-width: 767px) {
    .header {
        align-items: flex-start;
    }

    .site-nav {
        width: 100%;
        justify-content: flex-start;
    }

    .site-nav a {
        padding-left: 0;
        padding-right: 0.75rem;
    }
}

.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hero-section {
    padding: 6rem 1.5rem;
    text-align: center;
    background: linear-gradient(to bottom, #111827, #111827, #1f2937);
}

@media (min-width: 1024px) {
    .hero-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.hero-container {
    max-width: 56rem;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: rgba(6, 78, 59, 0.3);
    color: #6ee7b7;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(6, 95, 70, 0.5);
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.3);
}

.shield-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 4px rgba(52, 211, 153, 0.8));
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-title-accent {
    color: #34d399;
    filter: drop-shadow(0 0 12px rgba(52, 211, 153, 0.5));
}

.hero-description {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.features-section {
    padding: 6rem 1.5rem;
    background-color: #1f2937;
}

@media (min-width: 1024px) {
    .features-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.features-container {
    max-width: 72rem;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #34d399;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: #9ca3af;
    max-width: 36rem;
    margin-bottom: 3rem;
    line-height: 1.75;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background-color: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.75rem;
    padding: 1.75rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(52, 211, 153, 0.3);
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.1);
}

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #34d399;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 6px rgba(52, 211, 153, 0.4));
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.6;
}

.how-it-works-section {
    padding: 6rem 1.5rem;
    background-color: #111827;
}

@media (min-width: 1024px) {
    .how-it-works-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.how-it-works-container {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    counter-increment: step-counter;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgba(6, 78, 59, 0.3);
    border: 1px solid rgba(52, 211, 153, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #34d399;
}

.step-content {
    padding-top: 0.25rem;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.375rem;
}

.step-description {
    font-size: 0.9375rem;
    color: #9ca3af;
    line-height: 1.6;
}

.faq-section {
    padding: 6rem 1.5rem;
    background-color: #1f2937;
}

.content-links-section {
    padding: 6rem 1.5rem;
    background-color: #111827;
}

@media (min-width: 1024px) {
    .content-links-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.content-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .content-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.content-link-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 8rem;
    padding: 1.5rem;
    background-color: rgba(31, 41, 55, 0.72);
    border: 1px solid rgba(55, 65, 81, 0.7);
    border-radius: 0.5rem;
    color: white;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.content-link-card:hover {
    border-color: rgba(52, 211, 153, 0.45);
    transform: translateY(-2px);
}

.content-link-card span {
    color: #34d399;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.content-link-card strong {
    font-size: 1.125rem;
    line-height: 1.35;
}

@media (min-width: 1024px) {
    .faq-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.faq-container {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.faq-list {
    margin-top: 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background-color: rgba(55, 65, 81, 0.5);
    border-radius: 0.75rem;
    overflow: hidden;
}

.faq-item {
    background-color: #1f2937;
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .faq-item {
        padding: 1.75rem 2rem;
    }
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.faq-answer {
    font-size: 0.9375rem;
    color: #9ca3af;
    line-height: 1.7;
}

.cta-section {
    padding: 6rem 1.5rem;
    background: linear-gradient(to bottom, #111827, #0a0f1a);
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .cta-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.cta-container {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-description {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    background-color: #059669;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.4);
    transition: all 0.3s ease;
    height: 2.75rem;
}

.btn-primary:hover {
    background-color: #047857;
    box-shadow: 0 0 25px rgba(52, 211, 153, 0.6);
}

.footer {
    padding: 3rem 1.5rem;
    background: linear-gradient(to bottom, #111827, #000000);
    color: white;
}

@media (min-width: 1024px) {
    .footer {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.footer-container {
    max-width: 72rem;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
    }
}

.footer-contact {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
    font-style: normal;
    margin-top: 1rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .footer-contact {
        margin-top: 0;
    }
}

.email-link {
    color: #34d399;
    text-decoration: none;
    filter: drop-shadow(0 0 6px rgba(52, 211, 153, 0.4));
    transition: all 0.3s ease;
}

.email-link:hover {
    color: #6ee7b7;
    filter: drop-shadow(0 0 8px rgba(52, 211, 153, 0.6));
}

.footer-copyright {
    border-top: 1px solid #1f2937;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-copyright p + p {
    margin-top: 0.5rem;
}

.animate-hidden {
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .animate-hidden {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.not-found-container {
    text-align: center;
    max-width: 28rem;
    padding: 1.5rem;
}

.error-section {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1.5rem;
    background: linear-gradient(to bottom, #111827, #0a0f1a);
}

.not-found-logo {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.not-found-mail-icon {
    width: 2rem;
    height: 2rem;
}

.not-found-logo-text {
    font-size: 1.5rem;
}

.not-found-code {
    font-size: 6rem;
    font-weight: 700;
    color: #34d399;
    margin-bottom: 1rem;
    line-height: 1;
}

.not-found-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.not-found-description {
    color: #d1d5db;
    margin-bottom: 2rem;
}

.not-found-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.full-width-button {
    width: 100%;
}

.button-icon {
    margin-right: 0.5rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #d1d5db;
    background-color: transparent;
    border: 1px solid #4b5563;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 2.75rem;
    width: 100%;
}

.btn-outline:hover {
    background-color: #374151;
    color: white;
}

.not-found-help {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.request-id {
    color: #6b7280;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.request-id code {
    color: #34d399;
}

.article-hero {
    padding: 6rem 1.5rem 4rem;
    background: linear-gradient(to bottom, #111827, #182235);
}

.article-container {
    max-width: 48rem;
    margin: 0 auto;
}

.article-title {
    font-size: 2.25rem;
    line-height: 1.15;
    color: white;
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .article-title {
        font-size: 3.25rem;
    }
}

.article-description {
    color: #d1d5db;
    font-size: 1.125rem;
    line-height: 1.75;
}

.article-section {
    padding: 4rem 1.5rem 5rem;
    background-color: #111827;
}

.article-content {
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.8;
}

.article-content h2 {
    color: white;
    font-size: 1.5rem;
    line-height: 1.25;
    margin-top: 2.5rem;
    margin-bottom: 0.875rem;
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content p + p {
    margin-top: 1rem;
}

.article-content a {
    color: #6ee7b7;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

.article-content a:hover {
    color: #a7f3d0;
}

.article-content ul {
    margin-top: 1rem;
    padding-left: 1.25rem;
}

.article-content li + li {
    margin-top: 0.75rem;
}

.comparison-table-wrapper {
    margin: 2rem 0;
    overflow-x: auto;
    border: 1px solid rgba(55, 65, 81, 0.8);
    border-radius: 0.5rem;
}

.comparison-table {
    width: 100%;
    min-width: 42rem;
    border-collapse: collapse;
    background-color: rgba(31, 41, 55, 0.6);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(55, 65, 81, 0.8);
    text-align: left;
    vertical-align: top;
}

.comparison-table th {
    color: white;
    font-size: 0.875rem;
    background-color: rgba(17, 24, 39, 0.72);
}

.comparison-table td {
    color: #d1d5db;
    font-size: 0.9375rem;
}

.comparison-table tr:last-child td {
    border-bottom: 0;
}
