/* Variables globales */
:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #3b82f6;
    --text-color: #ffffff;
    --dark-text: #000000;
    --light-bg: #f3f4f6;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo img {
    height: 35px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.nav-button {
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.nav-button.support {
    background-color: var(--dark-text);
    color: var(--white);
}

.nav-button.agent {
    background-color: var(--white);
    color: var(--dark-text);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: center;
    width: 100%;
}

.hero-text h1 {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    margin: 1rem 0;
    letter-spacing: 2px;
    color: var(--text-color);
}

.hero-text h2 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-color);
}

.hero-text .text-left {
    text-align: left;
    margin-left: 15%;
}

.hero-text .text-right {
    text-align: right;
    margin-right: 15%;
}

.learn-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.learn-more span {
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--text-color);
}

.circle-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid var(--text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

.circle-arrow i {
    color: var(--text-color);
    font-size: 1rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Services Section */
.services {
    padding: 5rem 5%;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--light-text);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Testimonials Section */
.testimonials {
    background-color: #000000;
    color: #ffffff;
    padding: 80px 0;
    position: relative;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 50% 50% 0 50%;
    margin-bottom: 20px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.testimonial-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
    flex-grow: 1;
}

.testimonial-author {
    margin-top: auto;
}

.testimonial-author span {
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
}

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

.join-button {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.join-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials h2 {
        font-size: 2rem;
    }
    
    .testimonial-image {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .testimonial-content {
        text-align: center;
    }
}

/* Contact Section */
.contact {
    background-color: var(--white);
    padding: 80px 0;
    position: relative;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-header {
    text-align: left;
    margin-bottom: 40px;
    position: relative;
}

.contact-info .flower-icon {
    position: absolute;
    top: -30px;
    right: 20px;
    width: 60px;
    height: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background-color: var(--dark-text);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item p {
    margin: 0;
    font-size: 1rem;
    color: var(--dark-text);
}

.contact-form {
    background-color: var(--dark-text);
    padding: 40px;
    border-radius: 20px;
    color: var(--white);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    padding-right: 40px;
}

.form-group select option {
    background-color: var(--dark-text);
    color: var(--white);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: var(--white);
    color: var(--dark-text);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info .section-header {
        text-align: center;
    }
    
    .contact-details {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-info p {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 30px;
    }
}

/* Footer */
footer {
    background-color: #000000;
    color: #ffffff;
    padding: 80px 0 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Brand Section */
.footer-brand {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-logo p {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.8;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact p:first-child {
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-social p {
    margin-bottom: 20px;
    font-weight: bold;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.2rem;
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    opacity: 0.7;
}

/* Links Section */
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.link-column h3 {
    font-size: 1rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.link-column ul {
    list-style: none;
    padding: 0;
}

.link-column ul li {
    margin-bottom: 15px;
}

.link-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.link-column ul li a:hover {
    opacity: 1;
}

/* Newsletter Section */
.newsletter p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 20px;
}

.subscribe-button {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 15px 30px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* Legal Section */
.footer-legal {
    padding-top: 40px;
}

.footer-legal p {
    font-size: 0.8rem;
    line-height: 1.6;
    opacity: 0.6;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .newsletter {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-brand {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter {
        grid-column: auto;
    }

    .footer-legal p {
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links, .nav-buttons {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-text .text-left,
    .hero-text .text-right {
        margin: 0;
        text-align: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Notificaciones */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 8px;
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification.success {
    background-color: #10b981;
}

.notification.error {
    background-color: #ef4444;
}

/* Mensajes de error del formulario */
.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.1);
}

/* About Section */
.about {
    padding: 4rem 5%;
    background-color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
    max-width: 600px;
}

.logo-section {
    margin-bottom: 2rem;
}

.about-logo {
    height: 50px;
}

.description {
    margin-bottom: 3rem;
}

.main-text {
    font-size: 2rem;
    line-height: 1.3;
    color: var(--dark-text);
    margin-bottom: 2rem;
    font-weight: 500;
}

.sub-text {
    font-size: 1.25rem;
    color: var(--dark-text);
    opacity: 0.8;
}

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

.about-button {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid var(--dark-text);
}

.about-button.dark {
    background-color: var(--dark-text);
    color: var(--white);
}

.about-button.light {
    background-color: transparent;
    color: var(--dark-text);
}

.about-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.butterfly-images {
    flex: 1;
    display: flex;
    gap: 1rem;
    position: relative;
}

.butterfly-wing {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.butterfly-wing img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.butterfly-wing.left img {
    border-radius: 50% 0 0 50% / 60% 0 0 40%;
}

.butterfly-wing.right img {
    border-radius: 0 50% 50% 0 / 0 60% 40% 0;
}

/* Media Queries para About Section */
@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

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

    .main-text {
        font-size: 1.75rem;
    }

    .butterfly-images {
        width: 100%;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .butterfly-wing img {
        height: 300px;
    }

    .main-text {
        font-size: 1.5rem;
    }

    .sub-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .butterfly-wing img {
        height: 200px;
    }

    .about-buttons {
        padding: 0 1rem;
    }
}

/* Why Choose Abroad Section */
.why-abroad {
    background-color: #000000;
    color: #ffffff;
    padding: 80px 0;
    position: relative;
}

.why-abroad-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-abroad .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.why-abroad .flower-icon {
    position: absolute;
    top: -30px;
    right: 20px;
    width: 60px;
    height: 60px;
}

.why-abroad h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.why-abroad .section-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.why-abroad .start-button {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.why-abroad .start-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    text-align: left;
}

.feature-card .feature-image {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
    overflow: hidden;
}

.feature-card .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.feature-card .learn-more {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}

.feature-card .learn-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card .learn-more:hover::after {
    transform: scaleX(1);
}

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

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-abroad h2 {
        font-size: 2.5rem;
    }
    
    .why-abroad .section-header p {
        font-size: 1rem;
    }
}

/* Earn Section */
.earn {
    background-color: #ffffff;
    color: #000000;
    padding: 80px 0;
    position: relative;
}

.earn-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.earn-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.earn .flower-icon {
    position: absolute;
    top: -30px;
    right: 20px;
    width: 60px;
    height: 60px;
}

.earn h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
    line-height: 1.2;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.earn-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.earn .apply-button {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.earn .apply-button:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.earn .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.earn .feature-card {
    text-align: left;
    background: #ffffff;
    transition: transform 0.3s ease;
}

.earn .feature-card:hover {
    transform: translateY(-5px);
}

.earn .feature-image {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
    overflow: hidden;
}

.earn .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.earn .feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.earn .feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #000000;
}

.earn .feature-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666666;
}

@media (max-width: 1200px) {
    .earn .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .earn h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .earn .features-grid {
        grid-template-columns: 1fr;
    }
    
    .earn h2 {
        font-size: 1.8rem;
    }
    
    .earn-header p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .earn .feature-image {
        height: 200px;
    }
}

/* FAQ Section */
.faq {
    background-color: #000000;
    color: #ffffff;
    padding: 80px 0;
    position: relative;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question span {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.faq-question i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
}

.faq-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.contact-button {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq h2 {
        font-size: 2rem;
    }
    
    .faq-question span {
        font-size: 1rem;
    }
    
    .faq-cta p {
        font-size: 1.1rem;
    }
}

/* Migration Simple Section */
.migration-simple {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.migration-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.migration-content {
    padding-right: 40px;
}

.migration-content h2 {
    font-size: 3.5rem;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.migration-content p {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.4;
    opacity: 0.8;
}

.find-support-button {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.find-support-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.migration-image {
    position: relative;
    width: 100%;
    height: 500px;
}

.migration-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.image-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    z-index: 2;
}

.image-decoration.left {
    background-color: #FFB6C1;
    top: -20px;
    left: -20px;
}

.image-decoration.right {
    background-color: #6495ED;
    bottom: -20px;
    right: -20px;
}

@media (max-width: 1200px) {
    .migration-content h2 {
        font-size: 3rem;
    }

    .migration-content p {
        font-size: 1.3rem;
    }

    .migration-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .migration-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .migration-content {
        padding-right: 0;
        text-align: center;
    }

    .migration-content h2 {
        font-size: 2.5rem;
    }

    .migration-content p {
        font-size: 1.2rem;
    }

    .migration-image {
        height: 300px;
        margin: 0 auto;
        max-width: 500px;
    }
} 