/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* 統一容器樣式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 統一內容容器樣式 */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section Styles */
.hero {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(28,178,108,0.1)"/><circle cx="20" cy="30" r="0.5" fill="rgba(28,178,108,0.1)"/><circle cx="80" cy="20" r="0.8" fill="rgba(28,178,108,0.1)"/><circle cx="30" cy="80" r="0.6" fill="rgba(28,178,108,0.1)"/></svg>');
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1CB26C, #0ea85c);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(28, 178, 108, 0.3);
    animation: bounce 2s ease-in-out infinite;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-title .accent {
    background: linear-gradient(135deg, #1CB26C, #0ea85c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(28, 178, 108, 0.3);
}

.hero-title .main {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-subtitle strong {
    color: #1CB26C;
    font-weight: 700;
}

.hero-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -8px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-avatars img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid rgba(28, 178, 108, 0.8);
    margin-left: -8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.hero-avatars img:first-child {
    margin-left: 0;
}

.hero-avatars img:hover {
    transform: translateY(-5px) scale(1.1);
    z-index: 10;
    border-color: #1CB26C;
    box-shadow: 0 10px 25px rgba(28, 178, 108, 0.4);
}

.avatar-text {
    margin-left: 20px;
    text-align: left;
}

.avatar-text span:first-child {
    display: block;
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.avatar-text span:last-child {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-primary {
    background: linear-gradient(135deg, #1CB26C, #0ea85c);
    color: white;
    border: none;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(28, 178, 108, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(28, 178, 108, 0.4);
    background: linear-gradient(135deg, #0ea85c, #1CB26C);
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Header Styles (Legacy) */
.header {
    background: #f8f9fc;
    color: #333;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Avatars Section */
.avatars-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    gap: -10px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2), 0 0 0 4px rgba(255,255,255,0.8);
    margin-left: -10px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:hover {
    transform: translateY(-5px);
    z-index: 10;
}

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

.header h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.1;
}

.header p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Button Styles */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 160px;
    text-align: center;
}

.cta-button.primary {
    background: #1CB26C;
    color: white;
    box-shadow: 0 4px 15px rgba(28, 178, 108, 0.3);
}

.cta-button.primary:hover {
    background: #0ea85c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 178, 108, 0.4);
}

.cta-button.secondary {
    background: rgba(28, 178, 108, 0.1);
    color: #1CB26C;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 0 2px rgba(28, 178, 108, 0.3);
}

.cta-button.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #1CB26C;
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button.secondary:hover {
    color: white;
    transform: translateY(-2px);
}

.cta-button.secondary:hover::before {
    left: 0;
}

/* 統一Section樣式 */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1CB26C;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #666;
}

/* Introduction Section */
.intro-section {
    padding: 80px 0;
    background: #fff;
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.intro-text h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8f9fc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08), 0 0 0 1px rgba(232,233,239,0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(28, 178, 108, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(28, 178, 108, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: rgba(28, 178, 108, 0.15);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Image Section */
.image-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 80px 0;
}

.image-placeholder {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
    text-align: center;
}

.image-placeholder img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats Section */
.stats-section {
    background: #fff;
    padding: 60px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,233,239,0.4) 20%, rgba(232,233,239,0.4) 80%, transparent);
}

.stats-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1CB26C;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

/* Results Section */
.results-section {
    padding: 80px 0;
    background: #f8f9fc;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.result-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08), 0 0 0 1px rgba(232,233,239,0.3);
    transition: transform 0.3s ease;
}

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

.result-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.result-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.result-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1CB26C;
    margin-bottom: 20px;
}

.result-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.progress-indicator {
    margin-top: 20px;
}

.progress-indicator span {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 10px;
    display: block;
}

.progress-bar {
    background: #e8e9ef;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1CB26C, #0ea85c);
    border-radius: 4px;
    transition: width 1s ease;
    width: 0;
}

.result-card:hover .progress-fill[data-progress="35"] {
    width: 35%;
}

.result-card:hover .progress-fill[data-progress="98"] {
    width: 98%;
}

/* Testimonial Section */
.testimonial-section {
    background: #fff;
    padding: 80px 0;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto 40px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(232,233,239,0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-info h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.rating {
    font-size: 1.2rem;
    display: flex;
    gap: 3px;
    align-items: center;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: #1CB26C;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-footer {
    text-align: right;
}

.posted-time {
    color: #999;
    font-size: 0.85rem;
}

.testimonial-summary {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: #f8f9fc;
    border-radius: 15px;
}

.testimonial-summary p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Course Sections */
.course-section {
    padding: 80px 0;
}

.course-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.course-item {
    background: #fff;
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}

.course-item svg {
    margin-right: 20px;
    flex-shrink: 0;
}

.course-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.course-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Planet Section */
.planet-section {
    background: #1a1a2e;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.planet-visual {
    margin-bottom: 40px;
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.planet-decoration {
    position: relative;
    width: 300px;
    height: 300px;
}

.planet-item {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1CB26C, #0ea85c);
    opacity: 0.8;
    animation: float 6s ease-in-out infinite;
}

.planet-item:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.planet-item:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 1.5s;
}

.planet-item:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.planet-item:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

.tags-section {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(28, 178, 108, 0.15);
    color: #1CB26C;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: inset 0 0 0 1px rgba(28, 178, 108, 0.2), 0 2px 8px rgba(28, 178, 108, 0.1);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(28, 178, 108, 0.3);
    transform: translateY(-2px);
}

/* Global Markets Section */
.global-markets-section {
    background: #f8f9fc;
    color: #333;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.global-markets-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,233,239,0.4) 20%, rgba(232,233,239,0.4) 80%, transparent);
}

.global-markets-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.global-intro-text {
    margin-bottom: 80px;
}

.global-intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.global-planet-visual {
    margin: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 400px;
}

.global-planet {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    animation: planetRotate 20s linear infinite;
}

.planet-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background-image: url('img/the_earth.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 0 40px rgba(28, 178, 108, 0.3);
    animation: glowPulse 3s ease-in-out infinite alternate;
}

.global-avatar {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 0 4px rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease;
}

.global-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(28, 178, 108, 0.2), 0 0 0 4px rgba(28, 178, 108, 0.3);
}

.global-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.global-avatar-1 {
    top: -40px;
    left: 80px;
    animation: avatarFloat 4s ease-in-out infinite;
}

.global-avatar-2 {
    top: 80px;
    right: -40px;
    animation: avatarFloat 4s ease-in-out infinite 1s;
}

.global-avatar-3 {
    bottom: -40px;
    right: 80px;
    animation: avatarFloat 4s ease-in-out infinite 2s;
}

.global-avatar-4 {
    bottom: 80px;
    left: -40px;
    animation: avatarFloat 4s ease-in-out infinite 3s;
}

.global-cta-content {
    margin: 80px 0 100px;
}

.global-cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.2;
}

.global-cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.global-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button.gradient {
    background: linear-gradient(45deg, #1CB26C 0%, #0ea85c 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(28, 178, 108, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button.gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button.gradient:hover::before {
    left: 100%;
}

.cta-button.gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(28, 178, 108, 0.5);
}

.cta-button.outline {
    background: transparent;
    color: #1CB26C;
    box-shadow: inset 0 0 0 2px rgba(28, 178, 108, 0.5);
    position: relative;
    overflow: hidden;
}

.cta-button.outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(28, 178, 108, 0.1);
    transition: left 0.3s ease;
}

.cta-button.outline:hover::before {
    left: 0;
}

.cta-button.outline:hover {
    color: #0ea85c;
    transform: translateY(-2px);
    box-shadow: inset 0 0 0 2px rgba(28, 178, 108, 0.8);
}

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

.market-info-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(232, 233, 239, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.market-info-card:hover::before {
    opacity: 1;
}

.market-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(28, 178, 108, 0.15), 0 0 0 1px rgba(28, 178, 108, 0.2);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.market-info-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.market-info-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

@keyframes planetRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes glowPulse {
    0% { opacity: 0.4; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes avatarFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #1CB26C 0%, #0ea85c 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.06) 0%, transparent 50%);
    opacity: 0.8;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating decorative elements for final-cta */
.final-cta::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: floatSlow 6s ease-in-out infinite;
}

.final-cta .container::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 15%;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: floatSlow 8s ease-in-out infinite reverse;
    z-index: 1;
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.final-cta .cta-button.primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.final-cta .cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.final-cta .cta-button.primary:hover::before {
    left: 100%;
}

.final-cta .cta-button.primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.final-cta .cta-button.secondary {
    background: transparent;
    color: white;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.final-cta .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* Footer Styles */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #1CB26C;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #1CB26C;
}

/* Company Section */
.company-section {
    padding: 80px 0;
    background: #fff;
}

.company-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.company-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.info-card {
    background: #f8f9fc;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: left;
}

.info-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideIn 0.3s ease;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.close:hover {
    color: #1CB26C;
}

.modal-header {
    text-align: center;
    padding: 40px 30px 20px;
    background: linear-gradient(135deg, #f8f9fc 0%, #fff 100%);
    border-radius: 20px 20px 0 0;
}

.modal-header svg {
    margin-bottom: 20px;
}

.modal-header h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.modal-body p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.modal-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.modal-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #555;
}

.modal-benefits li svg {
    margin-right: 12px;
    flex-shrink: 0;
}

.modal-footer {
    padding: 0 30px 40px;
    text-align: center;
}

.modal-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #25D366, #20BA5A);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.modal-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    background: linear-gradient(45deg, #20BA5A, #1BA352);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Button Styles - Make buttons work as buttons */
button.cta-button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: #fff;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(232, 233, 239, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(28, 178, 108, 0.15), 0 0 0 1px rgba(28, 178, 108, 0.2);
}

.gallery-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-content {
    padding: 25px;
}

.gallery-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.gallery-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.gallery-tag {
    display: inline-block;
    background: linear-gradient(45deg, #1CB26C, #0ea85c);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.gallery-cta {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fc;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Expert Section */
.expert-section {
    padding: 80px 0;
    background: #f8f9fc;
}

.expert-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.expert-label {
    display: inline-block;
    background: rgba(28, 178, 108, 0.1);
    color: #1CB26C;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
}

.expert-name {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.expert-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    font-weight: 500;
}

.expert-experience {
    margin-bottom: 40px;
}

.expert-experience p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.expert-signature {
    padding-top: 30px;
    position: relative;
}

.expert-signature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 30%;
    height: 2px;
    background: linear-gradient(90deg, rgba(28, 178, 108, 0.6), rgba(28, 178, 108, 0.2), transparent);
}

.expert-signature span {
    font-size: 1.1rem;
    color: #1CB26C;
    font-weight: 600;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-green { color: #1CB26C; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }

/* Medium screens - 2 columns for market info */
@media (max-width: 1024px) {
    .market-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Hero Section Responsive */
    .hero {
        min-height: 90vh;
        padding: 80px 0 60px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 10px 20px;
        margin-bottom: 25px;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 25px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .hero-avatars {
        margin-bottom: 40px;
        flex-direction: column;
        gap: 20px;
    }

    .hero-avatars img {
        width: 45px;
        height: 45px;
        margin-left: -5px;
    }

    .avatar-text {
        margin-left: 0;
        text-align: center;
    }

    .btn-primary {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .header {
        padding: 60px 0;
    }
    
    .header-content {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .avatars-section {
        margin-bottom: 30px;
    }
    
    .avatar {
        width: 50px;
        height: 50px;
        margin-left: -5px;
    }
    
    .header h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .header p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .header-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .image-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-header {
        flex-direction: row;
        text-align: left;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .expert-name {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .gallery-content {
        padding: 20px;
    }
    
    .gallery-content h3 {
        font-size: 1.2rem;
    }
    
    .gallery-cta {
        padding: 30px 15px;
    }
    
    .global-markets-section {
        padding: 80px 0;
    }
    
    .global-intro-text {
        margin-bottom: 60px;
    }
    
    .global-intro-text p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .global-planet-visual {
        height: 300px;
        margin: 60px 0;
    }
    
    .global-planet {
        width: 200px;
        height: 200px;
    }
    
    .global-avatar {
        width: 60px;
        height: 60px;
    }
    
    .global-avatar-1 {
        top: -30px;
        left: 50px;
    }
    
    .global-avatar-2 {
        top: 50px;
        right: -30px;
    }
    
    .global-avatar-3 {
        bottom: -30px;
        right: 50px;
    }
    
    .global-avatar-4 {
        bottom: 50px;
        left: -30px;
    }
    
    .global-cta-content {
        margin: 60px 0 80px;
    }
    
    .global-cta-content h2 {
        font-size: 2.2rem;
        padding: 0 15px;
    }
    
    .global-cta-content p {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .global-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .market-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .market-info-card {
        padding: 25px 20px;
    }
    
    .final-cta {
        padding: 80px 0;
    }
    
    .final-cta h2 {
        font-size: 2rem;
        padding: 0 15px;
    }
    
    .final-cta p {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .planet-decoration {
        width: 250px;
        height: 250px;
    }
    
    .planet-item {
        width: 50px;
        height: 50px;
    }
    
    .tags-section {
        gap: 10px;
    }
    
    .tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons .cta-button {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Hero Section Small Mobile */
    .hero {
        min-height: 85vh;
        padding: 60px 0 50px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }

    .hero-avatars {
        margin-bottom: 35px;
    }

    .hero-avatars img {
        width: 40px;
        height: 40px;
    }

    .avatar-text span:first-child {
        font-size: 1rem;
    }

    .avatar-text span:last-child {
        font-size: 0.8rem;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
    }

    .header {
        padding: 50px 0;
    }
    
    .header-content {
        padding: 0 15px;
    }
    
    .avatars-section {
        margin-bottom: 25px;
        gap: -5px;
    }
    
    .avatar {
        width: 45px;
        height: 45px;
        margin-left: -3px;
        border-width: 2px;
    }
    
    .header h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .header p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .header-buttons {
        gap: 12px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
        min-width: 140px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .course-item {
        flex-direction: column;
        text-align: center;
    }
    
    .course-item svg {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .intro-text h2 {
        font-size: 1.6rem;
    }
    
    .intro-text p {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .result-card {
        padding: 30px 20px;
    }
    
    .result-number {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        padding-left: 20px;
    }
    
    .testimonial-summary {
        padding: 20px;
    }
    
    .planet-visual {
        height: 150px;
        margin-bottom: 30px;
    }
    
    .planet-decoration {
        width: 200px;
        height: 200px;
    }
    
    .planet-item {
        width: 40px;
        height: 40px;
    }
    
    .final-cta {
        padding: 60px 0;
    }
    
    .final-cta h2 {
        font-size: 1.6rem;
        padding: 0 10px;
        line-height: 1.3;
    }
    
    .final-cta p {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .final-cta .cta-button {
        width: 100%;
        max-width: 260px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .company-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .info-card {
        padding: 25px 20px;
    }
    
    .info-card h3 {
        font-size: 1.3rem;
    }
    
    .expert-label {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .expert-name {
        font-size: 1.8rem;
    }
    
    .expert-description {
        font-size: 1.1rem;
    }
    
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-header {
        margin-bottom: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-content {
        padding: 20px 15px;
    }
    
    .gallery-content h3 {
        font-size: 1.1rem;
    }
    
    .gallery-content p {
        font-size: 0.9rem;
    }
    
    .gallery-tag {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .gallery-cta {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .gallery-cta p {
        font-size: 1rem;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header {
        padding: 30px 20px 15px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-body p {
        font-size: 1rem;
    }
    
    .modal-benefits li {
        font-size: 0.9rem;
    }
    
    .modal-footer {
        padding: 0 20px 30px;
    }
    
    .modal-cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .global-markets-section {
        padding: 60px 0;
    }
    
    .global-intro-text {
        margin-bottom: 40px;
    }
    
    .global-intro-text p {
        font-size: 0.95rem;
        padding: 0 10px;
        line-height: 1.7;
    }
    
    .global-planet-visual {
        height: 250px;
        margin: 40px 0;
    }
    
    .global-planet {
        width: 150px;
        height: 150px;
    }
    
    .global-avatar {
        width: 50px;
        height: 50px;
    }
    
    .global-avatar-1 {
        top: -25px;
        left: 35px;
    }
    
    .global-avatar-2 {
        top: 35px;
        right: -25px;
    }
    
    .global-avatar-3 {
        bottom: -25px;
        right: 35px;
    }
    
    .global-avatar-4 {
        bottom: 35px;
        left: -25px;
    }
    
    .global-cta-content {
        margin: 40px 0 60px;
    }
    
    .global-cta-content h2 {
        font-size: 1.8rem;
        padding: 0 10px;
        line-height: 1.3;
    }
    
    .global-cta-content p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .global-cta-buttons .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .market-info-grid {
        margin-top: 30px;
        gap: 20px;
    }
    
    .market-info-card {
        padding: 20px 15px;
    }
    
    .market-info-card h3 {
        font-size: 1.2rem;
    }
    
    .info-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Accessibility */
.cta-button:focus,
.footer-section a:focus {
    outline: 2px solid #1CB26C;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .final-cta,
    .footer {
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }
    
    .cta-button {
        box-shadow: inset 0 0 0 2px #1CB26C;
        background: rgba(28, 178, 108, 0.1) !important;
    }
} 

/* Professional Stock Investment Education Section */
.investment-education-section {
    background: linear-gradient(135deg, #f8f9fc 0%, #e8f5e8 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 3px solid rgba(28, 178, 108, 0.1);
}

.investment-education-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28, 178, 108, 0.02) 0%, rgba(28, 178, 108, 0.05) 100%);
    z-index: 0;
}

.investment-education-content {
    position: relative;
    z-index: 1;
}

.education-header {
    text-align: center;
    margin-bottom: 80px;
}

.education-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1CB26C, #0ea85c);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(28, 178, 108, 0.3);
    letter-spacing: 0.5px;
}

.education-title {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
}

.education-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start;
    margin-bottom: 80px;
}

/* Removed education-column as cards are now directly in grid */

.education-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(28, 178, 108, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.education-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28, 178, 108, 0.03), rgba(28, 178, 108, 0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.education-card:hover::before {
    opacity: 1;
}

.education-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(28, 178, 108, 0.15);
    border-color: rgba(28, 178, 108, 0.3);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1CB26C, #0ea85c);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(28, 178, 108, 0.3);
    position: relative;
    z-index: 1;
}

.education-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.education-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 25px;
    color: #555;
    position: relative;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #1CB26C;
    font-weight: bold;
    font-size: 1.1rem;
}

.education-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trading-dashboard {
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(28, 178, 108, 0.1);
    position: relative;
    overflow: hidden;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(28, 178, 108, 0.1);
}

.dashboard-title h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.status-indicator {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.market-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #1CB26C;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #1CB26C;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.chart-preview {
    margin-bottom: 25px;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.current-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2c3e50;
}

.price-change {
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.95rem;
}

.price-change.positive {
    background: rgba(28, 178, 108, 0.1);
    color: #1CB26C;
}

.mini-chart {
    height: 120px;
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(28, 178, 108, 0.05), rgba(28, 178, 108, 0.1));
}

.chart-svg {
    width: 100%;
    height: 100%;
}

.indicators-panel {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(28, 178, 108, 0.05);
    border-radius: 12px;
}

.indicator-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    min-width: 60px;
}

.indicator-value {
    font-weight: 700;
    color: #2c3e50;
    margin-right: auto;
}

.indicator-value.positive {
    color: #1CB26C;
}

.indicator-bar {
    width: 80px;
    height: 4px;
    background: rgba(28, 178, 108, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.indicator-fill {
    height: 100%;
    background: linear-gradient(90deg, #1CB26C, #0ea85c);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.signal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.signal-dot.positive {
    background: #1CB26C;
    box-shadow: 0 0 8px rgba(28, 178, 108, 0.5);
}

.volume-bars {
    display: flex;
    align-items: end;
    gap: 2px;
    height: 16px;
}

.volume-bar {
    width: 3px;
    background: #1CB26C;
    border-radius: 1px;
}

.key-levels {
    display: flex;
    gap: 15px;
}

.level-item {
    flex: 1;
    padding: 12px 15px;
    border-radius: 12px;
    text-align: center;
}

.level-type {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.level-type.resistance {
    color: #e74c3c;
}

.level-type.support {
    color: #1CB26C;
}

.level-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
}

.education-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 25px 20px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(28, 178, 108, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(28, 178, 108, 0.15);
    border-color: rgba(28, 178, 108, 0.3);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1CB26C;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.education-methodology {
    background: white;
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(28, 178, 108, 0.1);
}

.methodology-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.method-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1CB26C, #0ea85c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(28, 178, 108, 0.3);
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.education-cta {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, #1CB26C, #0ea85c);
    border-radius: 25px;
    color: white;
    position: relative;
    overflow: hidden;
}

.education-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 6s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.education-cta .cta-button {
    background: white;
    color: #1CB26C;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 40px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.education-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design for Investment Education Section */
@media (max-width: 1024px) {
    .education-grid {
        gap: 60px;
    }
    
    .methodology-steps {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .investment-education-section {
        padding: 80px 0;
    }
    
    .education-title {
        font-size: 2.2rem;
    }
    
    .education-subtitle {
        font-size: 1.1rem;
    }
    
    .education-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .education-card {
        padding: 25px;
    }
    
    .methodology-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .education-methodology {
        padding: 30px;
    }
    
    .education-cta {
        padding: 40px 20px;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .education-title {
        font-size: 1.8rem;
    }
    
    .education-card {
        padding: 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .current-price {
        font-size: 1.8rem;
    }
    
    .trading-dashboard {
        padding: 15px;
    }
    
    .education-cta {
        padding: 30px 15px;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
} 