@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --primary: #6C63FF;
    --secondary: #FF6B6B;
    --accent: #4ECDC4;
    --dark: #2C2C54;
    --light: #F7F7F7;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

.nAv3r {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 5%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nAv3r_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.lOg0_wrapper {
    display: flex;
    align-items: center;
}

.lOg0_wrapper img {
    height: 40px;
}

.hM2r_toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 20;
    position: relative;
}

.hM2r_toggle span {
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.hM2r_toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8.5px);
}

.hM2r_toggle.active span:nth-child(2) {
    opacity: 0;
}

.hM2r_toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8.5px);
}

.nAv3r_links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nAv3r_link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nAv3r_link:hover {
    color: var(--primary);
}

.bTn_primary {
    background: var(--gradient);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.bTn_primary:hover {
    transform: translateY(-2px);
}

.h3r0_section {
    padding: 8rem 5% 5rem;
    background: url('../img/hero.jpg') center/cover;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.h3r0_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(44, 44, 84, 0.9), rgba(108, 99, 255, 0.7));
}

.h3r0_content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    color: white;
}

.h3r0_subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.h3r0_title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.h3r0_description {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.h3r0_buttons {
    display: flex;
    gap: 1rem;
}

.bTn_secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.bTn_secondary:hover {
    background: white;
    color: var(--primary);
}

.fN8n_section {
    padding: 5rem 5%;
    background: var(--light);
}

.fN8n_container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.fN8n_item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.fN8n_item:hover {
    transform: translateY(-5px);
}

.fN8n_icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.fN8n_title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.fN8n_description {
    color: #666;
    line-height: 1.6;
}

.gM3s_section {
    padding: 5rem 5%;
    background: var(--light);
}

.gM3s_container {
    max-width: 1400px;
    margin: 0 auto;
}

.gM3s_header {
    text-align: center;
    margin-bottom: 3rem;
}

.gM3s_title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.gM3s_subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.gM3s_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gM3s_card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.gM3s_card:hover {
    transform: translateY(-5px);
}

.gM3s_image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gM3s_content {
    padding: 1.5rem;
    text-align: center;
}

.gM3s_name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.aB8t_section {
    padding: 5rem 5%;
    background: var(--gradient);
    color: white;
}

.aB8t_container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.aB8t_image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.aB8t_content {
    padding-right: 2rem;
}

.aB8t_subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.aB8t_title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.aB8t_description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.aB8t_features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.aB8t_feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.aB8t_feature_icon {
    font-size: 1.5rem;
}

.aB8t_feature_text {
    font-size: 1.1rem;
    font-weight: 500;
}

.rP8y_section {
    padding: 5rem 5%;
    background: var(--dark);
    color: white;
}

.rP8y_container {
    max-width: 1400px;
    margin: 0 auto;
}

.rP8y_header {
    text-align: center;
    margin-bottom: 3rem;
}

.rP8y_title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.rP8y_subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.rP8y_content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.rP8y_notice {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.rP8y_notice .rP8y_icon {
    font-size: 2rem;
}

.rP8y_notice .rP8y_text {
    font-size: 1.1rem;
    line-height: 1.6;
}

.rP8y_guidelines {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.rP8y_guideline {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s;
}

.rP8y_guideline:hover {
    transform: translateY(-5px);
}

.rP8y_guideline .rP8y_icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.rP8y_guideline p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.aG3v_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aG3v_popup {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.aG3v_title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.aG3v_text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.aG3v_buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.aG3v_btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.aG3v_yes {
    background: var(--gradient);
    color: white;
}

.aG3v_yes:hover {
    transform: translateY(-2px);
}

.aG3v_no {
    background: #ddd;
    color: var(--dark);
}

.aG3v_no:hover {
    background: #ccc;
}

.aG3v_restriction {
    display: none;
    background: var(--secondary);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1.5rem;
}

.aG3v_restriction h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.aG3v_restriction p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .aG3v_popup {
        padding: 2rem 1.5rem;
    }

    .aG3v_buttons {
        flex-direction: column;
    }

    .aG3v_btn {
        width: 100%;
    }
}

.cK8e_banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 84, 0.95);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 8888;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.cK8e_container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cK8e_content {
    flex: 1;
}

.cK8e_text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cK8e_text a {
    color: var(--accent);
    text-decoration: none;
}

.cK8e_text a:hover {
    text-decoration: underline;
}

.cK8e_actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cK8e_btn {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cK8e_accept {
    background: var(--accent);
    color: white;
}

.cK8e_accept:hover {
    background: #45b8b0;
}

.cK8e_decline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cK8e_decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cK8e_container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cK8e_actions {
        width: 100%;
        justify-content: center;
    }

    .cK8e_btn {
        flex: 1;
    }
}

.gM3p_section {
    padding: 8rem 5% 5rem;
    min-height: 100vh;
    background: var(--dark);
    color: white;
}

.gM3p_container {
    max-width: 1200px;
    margin: 0 auto;
}

.gM3p_header {
    text-align: center;
    margin-bottom: 3rem;
}

.gM3p_title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.gM3p_frame {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    text-align: center;
}

.gM3p_frame iframe {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 100%;
}

.gM3p_notice {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
}

.gM3p_notice h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.gM3p_notice p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .gM3p_title {
        font-size: 2rem;
    }
    
    .gM3p_frame {
        padding: 1rem;
    }
    
    .gM3p_notice {
        padding: 1.5rem;
    }
}

.pL7y_section {
    padding: 8rem 5% 5rem;
    min-height: 70vh;
    background: var(--light);
}

.pL7y_container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pL7y_title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.pL7y_content h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.pL7y_content h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.pL7y_content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.pL7y_content ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.pL7y_content ul li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    position: relative;
}

.pL7y_content ul li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: -1.5rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .pL7y_container {
        padding: 2rem 1.5rem;
    }

    .pL7y_title {
        font-size: 2rem;
    }
}

.gM3s_page {
    padding: 8rem 5% 5rem;
    min-height: 70vh;
    background: var(--light);
}

.gM3s_page_container {
    max-width: 1400px;
    margin: 0 auto;
}

.gM3s_page_header {
    text-align: center;
    margin-bottom: 4rem;
}

.gM3s_page_title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.gM3s_page_subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.gM3s_page_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.gM3s_page_card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.gM3s_page_card:hover {
    transform: translateY(-5px);
}

.gM3s_page_image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.gM3s_page_content {
    padding: 1.5rem;
}

.gM3s_page_name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.gM3s_page_desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.gM3s_page_stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #888;
}

.gM3s_page_stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 1024px) {
    .gM3s_page_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .gM3s_page_grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

.fQ9a_section {
    padding: 8rem 5% 5rem;
    min-height: 70vh;
    background: var(--light);
}

.fQ9a_container {
    max-width: 900px;
    margin: 0 auto;
}

.fQ9a_header {
    text-align: center;
    margin-bottom: 4rem;
}

.fQ9a_title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.fQ9a_subtitle {
    font-size: 1.1rem;
    color: #666;
}

.fQ9a_grid {
    display: grid;
    gap: 1.5rem;
}

.fQ9a_item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.fQ9a_question {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s;
}

.fQ9a_question:hover {
    background: rgba(0, 0, 0, 0.02);
}

.fQ9a_question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    padding-right: 2rem;
}

.fQ9a_icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.fQ9a_icon::before,
.fQ9a_icon::after {
    content: '';
    position: absolute;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 0.3s;
}

.fQ9a_icon::before {
    width: 2px;
    height: 20px;
    left: 9px;
    top: 0;
}

.fQ9a_icon::after {
    width: 20px;
    height: 2px;
    left: 0;
    top: 9px;
}

.fQ9a_answer {
    padding: 0 1.5rem;
    height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.fQ9a_answer p {
    color: #666;
    line-height: 1.6;
    padding-bottom: 1.5rem;
}

.fQ9a_item.active .fQ9a_question {
    background: rgba(0, 0, 0, 0.02);
}

.fQ9a_item.active .fQ9a_icon::before {
    transform: rotate(90deg);
}

.fQ9a_item.active .fQ9a_answer {
    height: auto;
}

.cN8t_section {
    padding: 8rem 5% 5rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: var(--light);
}

.cN8t_container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cN8t_title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 3rem;
    font-weight: 700;
}

.cN8t_content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cN8t_info {
    max-width: 600px;
    margin: 0 auto;
}

.cN8t_icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cN8t_subtitle {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cN8t_text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cN8t_email {
    display: inline-block;
    font-size: 1.3rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: color 0.3s;
}

.cN8t_email:hover {
    color: var(--secondary);
}

.cN8t_note {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
}

.fT8r {
    background: var(--dark);
    color: white;
    padding: 4rem 5% 2rem;
}

.fT8r_container {
    max-width: 1400px;
    margin: 0 auto;
}

.fT8r_disclaimer {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 3rem;
}

.fT8r_disclaimer p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.fT8r_disclaimer p:last-child {
    margin-bottom: 0;
}

.fT8r_images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.fT8r_image {
    height: 40px;
    object-fit: contain;
    transition: opacity 0.3s;
}

.fT8r_image:hover {
    opacity: 0.8;
}

.fT8r_links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.fT8r_link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s;
    position: relative;
}

.fT8r_link:hover {
    opacity: 1;
}

.fT8r_link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: white;
    left: 0;
    bottom: -2px;
    transition: width 0.3s;
}

.fT8r_link:hover::after {
    width: 100%;
}

.fT8r_copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .hM2r_toggle {
        display: flex;
    }

    .nAv3r_links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--gradient);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 15;
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nAv3r_links.active {
        right: 0;
    }

    .nAv3r_link {
        color: white;
        font-size: 1.2rem;
        position: relative;
        padding: 0.5rem 1rem;
    }

    .nAv3r_link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        background: white;
        left: 1rem;
        bottom: 0;
        transition: width 0.3s ease;
    }

    .nAv3r_link:hover::after {
        width: calc(100% - 2rem);
    }

    .nAv3r_links .bTn_primary {
        background: white;
        color: var(--primary);
        margin-top: 1rem;
    }

    .nAv3r_links .bTn_primary:hover {
        background: rgba(255, 255, 255, 0.9);
    }

    .mN2u_overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 10;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mN2u_overlay.active {
        display: block;
        opacity: 1;
    }
    
    .h3r0_title {
        font-size: 2.5rem;
    }
    
    .h3r0_buttons {
        flex-direction: column;
    }
    
    .bTn_primary, .bTn_secondary {
        text-align: center;
    }

    .fN8n_container {
        grid-template-columns: 1fr;
    }

    .rP8y_guidelines {
        grid-template-columns: 1fr;
    }

    .rP8y_notice {
        flex-direction: column;
        text-align: center;
    }

    .gM3s_grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .aB8t_container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .aB8t_content {
        padding-right: 0;
        order: -1;
    }

    .aB8t_features {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .fT8r_images {
        flex-direction: column;
        align-items: center;
    }

    .fT8r_links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .fT8r_disclaimer {
        padding: 1.5rem;
    }

    .fT8r_disclaimer p {
        font-size: 1rem;
    }

    .cN8t_content {
        padding: 2rem 1.5rem;
    }

    .cN8t_title {
        font-size: 2rem;
    }

    .cN8t_subtitle {
        font-size: 1.5rem;
    }

    .cN8t_email {
        font-size: 1.1rem;
        word-break: break-all;
    }
}
