/* Base Styles */
:root {
    --primary-color: #24af4c;
    --primary-dark: #1d8a3d;
    --primary-light: #2fd159;
    --accent-color: #24af4c;
    --text-white: #ffffff;
    --text-light: #b3b3b3;
    --background-dark: #121212;
    --background-darker: #0a0a0a;
    --background-light: #1e1e1e;
    --border-color: #2a2a2a;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--background-dark);
}

body.dark-theme {
    color: var(--text-white);
    background-color: var(--background-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-white);
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    text-transform: uppercase;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--text-white);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

section {
    padding: 5rem 0;
    position: relative;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header p {
    font-size: 1.1rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--text-white);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--text-white);
    color: var(--text-white);
}

.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--background-dark);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--text-white);
}

.btn-accent:hover {
    background-color: var(--primary-dark);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

header.sticky {
    background-color: var(--background-darker);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
}

.logo-img {
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-white);
    font-weight: 500;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover i {
    transform: rotate(180deg);
}

.nav-item.active .nav-link {
    color: var(--primary-color);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--background-darker);
    min-width: 200px;
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 10;
    padding: 0.5rem 0;
}

.dropdown-content a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-light);
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
}

.nav-item:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-columns {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
}

.dropdown-column h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.dropdown-column a {
    padding: 0.5rem 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Selector Styles */
.language-selector {
    position: relative;
    margin-left: 1rem;
    z-index: 50;
}

.current-language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
    color: var(--text-white);
    transition: var(--transition);
}

.current-language:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--background-darker);
    min-width: 180px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.language-selector.open .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    transition: var(--transition);
}

.language-option:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
}

.language-option.active {
    background-color: rgba(36, 175, 76, 0.1);
    color: var(--primary-color);
}

.language-option img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 6rem;
    background-color: var(--background-darker);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

.accent {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.mobile-app {
    max-height: 512px;
    border-radius: 20px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.rock {
    position: absolute;
    background-color: #1a1a1a;
    border-radius: 50%;
}

.rock-1 {
    width: 600px;
    height: 600px;
    bottom: -200px;
    right: 0;
    transform: rotate(-15deg);
    box-shadow: inset -10px -10px 20px rgba(36, 175, 76, 0.2);
}

.rock-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 10%;
    transform: rotate(30deg);
    box-shadow: inset 10px 10px 20px rgba(36, 175, 76, 0.1);
}

.trustpilot {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.stars {
    display: flex;
    color: #00b67a;
    font-size: 0.8rem;
}

.trust-logo {
    height: 20px;
    margin-left: 0.5rem;
}

/* Features Section */
.features {
    background-color: var(--background-dark);
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background-color: var(--background-darker);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(36, 175, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
}

/* Account Types Section */
.account-types {
    background-color: var(--background-darker);
    padding: 5rem 0;
    position: relative;
}

.accounts-wrapper {
    position: relative;
    z-index: 2;
}

.accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.account-card {
    background: linear-gradient(145deg, var(--background-light) 0%, var(--background-dark) 100%);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
}

.account-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(36, 175, 76, 0.2);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.account-card.featured {
    transform: scale(1.05);
    background: linear-gradient(145deg, rgba(36, 175, 76, 0.1) 0%, var(--background-dark) 100%);
    border: 1px solid rgba(36, 175, 76, 0.3);
    z-index: 3;
}

.account-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.account-card.featured .card-badge {
    background: rgba(255, 184, 0, 0.2);
    color: #ffb800;
}

.account-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.account-icon {
    width: 70px;
    height: 70px;
    background: rgba(36, 175, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.account-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.account-card.featured .account-icon {
    background: rgba(255, 184, 0, 0.1);
}

.account-card.featured .account-icon i {
    color: #ffb800;
}

.account-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    background: linear-gradient(90deg, var(--text-white), #b3b3b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.account-price {
    margin-bottom: 1rem;
    position: relative;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    display: block;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.account-card.featured .price-value {
    color: var(--primary-color);
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
}

.account-body {
    padding: 2rem;
}

.account-features {
    margin-bottom: 2rem;
}

.account-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
}

.account-features li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.account-perfect {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
}

.account-perfect p {
    margin: 0;
    color: var(--text-light);
}

.account-perfect strong {
    color: var(--text-white);
}

.account-card .btn {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.pulse-btn {
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(36, 175, 76, 0.7);
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(36, 175, 76, 0.7);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(36, 175, 76, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(36, 175, 76, 0);
    }
}

.accounts-comparison {
    text-align: center;
    margin-top: 2rem;
}

.comparison-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    transition: var(--transition);
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.03);
}

.comparison-link:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

/* Premium Account Types Section */
.account-types.premium-design {
    background-color: var(--background-darker);
    position: relative;
    overflow: hidden;
    padding: 7rem 0;
}

.account-types.premium-design .section-header h2::after {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    width: 120px;
    height: 4px;
}

.accounts-wrapper {
    position: relative;
    z-index: 2;
}

.accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.account-card {
    background: linear-gradient(145deg, var(--background-light) 0%, var(--background-dark) 100%);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
}

.account-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(36, 175, 76, 0.2);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.account-card.featured {
    transform: scale(1.05);
    background: linear-gradient(145deg, rgba(36, 175, 76, 0.1) 0%, var(--background-dark) 100%);
    border: 1px solid rgba(36, 175, 76, 0.3);
    z-index: 3;
}

.account-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.account-card.featured .card-badge {
    background: rgba(255, 184, 0, 0.2);
    color: #ffb800;
}

.account-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.account-icon {
    width: 70px;
    height: 70px;
    background: rgba(36, 175, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.account-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.account-card.featured .account-icon {
    background: rgba(255, 184, 0, 0.1);
}

.account-card.featured .account-icon i {
    color: #ffb800;
}

.account-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    background: linear-gradient(90deg, var(--text-white), #b3b3b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.account-price {
    margin-bottom: 1rem;
    position: relative;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    display: block;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.account-card.featured .price-value {
    color: var(--primary-color);
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
}

.account-body {
    padding: 2rem;
}

.account-features {
    margin-bottom: 2rem;
}

.account-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
}

.account-features li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.account-perfect {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
}

.account-perfect p {
    margin: 0;
    color: var(--text-light);
}

.account-perfect strong {
    color: var(--text-white);
}

.account-card .btn {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.pulse-btn {
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(36, 175, 76, 0.7);
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(36, 175, 76, 0.7);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(36, 175, 76, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(36, 175, 76, 0);
    }
}

.accounts-comparison {
    text-align: center;
    margin-top: 2rem;
}

.comparison-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    transition: var(--transition);
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.03);
}

.comparison-link:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

/* Premium Account Types Section */
.account-types.premium-design {
    background-color: var(--background-darker);
    position: relative;
    overflow: hidden;
    padding: 7rem 0;
}

.account-types.premium-design .section-header h2::after {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    width: 120px;
    height: 4px;
}

.accounts-wrapper {
    position: relative;
    z-index: 2;
}

.accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.account-card {
    background: linear-gradient(145deg, var(--background-light) 0%, var(--background-dark) 100%);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
}

.account-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(36, 175, 76, 0.2);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.account-card.featured {
    transform: scale(1.05);
    background: linear-gradient(145deg, rgba(36, 175, 76, 0.1) 0%, var(--background-dark) 100%);
    border: 1px solid rgba(36, 175, 76, 0.3);
    z-index: 3;
}

.account-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.account-card.featured .card-badge {
    background: rgba(255, 184, 0, 0.2);
    color: #ffb800;
}

.account-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.account-icon {
    width: 70px;
    height: 70px;
    background: rgba(36, 175, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.account-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.account-card.featured .account-icon {
    background: rgba(255, 184, 0, 0.1);
}

.account-card.featured .account-icon i {
    color: #ffb800;
}

.account-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    background: linear-gradient(90deg, var(--text-white), #b3b3b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.account-price {
    margin-bottom: 1rem;
    position: relative;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    display: block;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.account-card.featured .price-value {
    color: var(--primary-color);
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
}

.account-body {
    padding: 2rem;
}

.account-features {
    margin-bottom: 2rem;
}

.account-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
}

.account-features li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.account-perfect {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
}

.account-perfect p {
    margin: 0;
    color: var(--text-light);
}

.account-perfect strong {
    color: var(--text-white);
}

.account-card .btn {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.pulse-btn {
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(36, 175, 76, 0.7);
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(36, 175, 76, 0.7);
    }
    
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(36, 175, 76, 0);
    }
    
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(36, 175, 76, 0);
    }
}

.accounts-comparison {
    text-align: center;
    margin-top: 2rem;
}

.comparison-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    transition: var(--transition);
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.03);
}

.comparison-link:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
}

/* Premium Footer Design */
footer {
    background: linear-gradient(to bottom, #131722, #0c0e17);
    color: var(--text-white);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(36, 175, 76, 0), rgba(36, 175, 76, 0.5), rgba(36, 175, 76, 0));
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1.5rem;
    filter: brightness(1.2);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(36, 175, 76, 0.2);
}

.footer-column h4 {
    color: var(--text-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.footer-column ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    opacity: 0;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 15px;
}

.footer-column ul li a:hover::before {
    width: 10px;
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.7;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Floating background element for footer */
footer::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(36, 175, 76, 0.05) 0%, rgba(36, 175, 76, 0) 70%);
    top: -300px;
    right: -300px;
    z-index: 1;
}

/* Responsive adjustments for footer */
@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-logo {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        grid-column: 1;
    }
    
    .footer-column h4::after {
        width: 100%;
        height: 1px;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title,
    .hero-subtitle {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-title,
    .hero-subtitle {
        font-size: 3rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .trustpilot {
        justify-content: center;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--background-darker);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--shadow-md);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.3s ease;
    }
    
    .nav-item.dropdown.open .dropdown-content {
        max-height: 500px;
    }
    
    .dropdown-columns {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    h1, .hero-title, .hero-subtitle {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .accounts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    h1, .hero-title, .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .chat-btn span {
        display: none;
    }
    
    .chat-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
    
    .nav-right .btn {
        display: none;
    }
}

/* Premium Floating Chat Button */
.floating-chat {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.chat-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(36, 175, 76, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.chat-btn::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: all 0.6s ease;
}

.chat-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(36, 175, 76, 0.4);
}

.chat-btn:hover::before {
    left: 100%;
}

.chat-btn i {
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Chat button animation */
@keyframes pulse-chat {
    0% {
        box-shadow: 0 0 0 0 rgba(36, 175, 76, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(36, 175, 76, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(36, 175, 76, 0);
    }
}

.floating-chat .chat-btn {
    animation: pulse-chat 2s infinite;
}

/* Responsive adjustments for chat button */
@media (max-width: 768px) {
    .chat-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .floating-chat {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .chat-btn {
        width: 50px;
        height: 50px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }
    
    .chat-btn span {
        display: none;
    }
    
    .chat-btn i {
        background: transparent;
    }
}
        /* Premium Floating Chat Button */
        .floating-chat {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 999;
        }

        .chat-btn {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: var(--text-white);
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(36, 175, 76, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .chat-btn::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: all 0.6s ease;
        }

        .chat-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(36, 175, 76, 0.4);
        }

        .chat-btn:hover::before {
            left: 100%;
        }

        .chat-btn i {
            font-size: 1.2rem;
            background: rgba(255, 255, 255, 0.2);
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        /* Chat button animation */
        @keyframes pulse-chat {
            0% {
                box-shadow: 0 0 0 0 rgba(36, 175, 76, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(36, 175, 76, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(36, 175, 76, 0);
            }
        }

        .floating-chat .chat-btn {
            animation: pulse-chat 2s infinite;
        }

        /* Responsive adjustments for chat button */
        @media (max-width: 768px) {
            .chat-btn {
                padding: 0.8rem 1.2rem;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .floating-chat {
                bottom: 1.5rem;
                right: 1.5rem;
            }
            
            .chat-btn {
                width: 50px;
                height: 50px;
                padding: 0;
                border-radius: 50%;
                justify-content: center;
            }
            
            .chat-btn span {
                display: none;
            }
            
            .chat-btn i {
                background: transparent;
            }
        }

        /* SEO-Enhanced Trading Information Section Styles */
        .trading-info {
            background: linear-gradient(to bottom, #0c0e17, #131722);
            padding: 6rem 0;
            color: var(--text-white);
            position: relative;
            overflow: hidden;
        }

        .trading-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDQwIDQwIj48ZyBmaWxsPSIjMjRhZjRjIiBvcGFjaXR5PSIwLjA1Ij48cGF0aCBkPSJNMjAgMGMxMSAwIDIwIDkgMjAgMjBzLTkgMjAtMjAgMjBTMCAzMSAwIDIwIDkgMCAyMCAwem0wIDNjLTkuNCAwLTE3IDcuNi0xNyAxN3M3LjYgMTcgMTcgMTcgMTctNy42IDE3LTE3LTcuNi0xNy0xNy0xN3oiLz48L2c+PC9zdmc+');
            opacity: 0.1;
            pointer-events: none;
        }

        .info-tabs {
            margin-top: 3rem;
        }

        .tab-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            color: var(--text-white);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .tab-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        .tab-btn.active {
            background: linear-gradient(90deg, #24af4c, #1d8a3d);
            border-color: #24af4c;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(36, 175, 76, 0.2);
        }

        .tab-contents {
            position: relative;
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease forwards;
        }

        .tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .grid-content {
            /*display: grid;*/
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .grid-content.full-width {
            grid-template-columns: 1fr;
        }

        .content-text h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--text-white);
        }

        .content-text p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .content-image {
            position: relative;
        }

        .content-image img {
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            width: 100%;
        }

        .image-caption {
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(36, 175, 76, 0.9);
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            white-space: nowrap;
        }

        /* Strategy List Styles */
        .strategy-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .strategy-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .strategy-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.08);
        }

        .strategy-item h4 {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-white);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .strategy-item h4 i {
            color: #24af4c;
        }

        .strategy-item p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .strategy-metrics {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .strategy-metrics span {
            font-size: 0.8rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .cta-box {
            background: linear-gradient(135deg, rgba(36, 175, 76, 0.2) 0%, rgba(36, 175, 76, 0.05) 100%);
            border-radius: 12px;
            padding: 2rem;
            margin-top: 2rem;
            border: 1px solid rgba(36, 175, 76, 0.2);
        }

        .cta-box h4 {
            color: var(--text-white);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .cta-box p {
            margin-bottom: 1.5rem;
        }

        .cta-box .btn {
            margin-top: 0.5rem;
        }

        /* Analysis Types Styles */
        .analysis-types {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .analysis-box {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .analysis-box.technical {
            border-top: 3px solid #4a6fff;
        }

        .analysis-box.fundamental {
            border-top: 3px solid #ff6b35;
        }

        .analysis-box h4 {
            color: var(--text-white);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .analysis-box p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .check-list {
            margin-bottom: 0;
        }

        .check-list li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }

        .check-list li::before {
            content: "\f00c";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #24af4c;
        }

        .market-insights {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 1.5rem;
            margin-top: 2rem;
        }

        .market-insights h4 {
            color: var(--text-white);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .insights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }

        .insight-item {
            background: rgba(0, 0, 0, 0.2);
            padding: 1rem;
            border-radius: 8px;
        }

        .currency-pair {
            display: inline-block;
            background: rgba(36, 175, 76, 0.2);
            color: #24af4c;
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
            margin-bottom: 0.5rem;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .insight-item p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        /* Tips Styles */
        .tips-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .tip-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            transition: all 0.3s ease;
        }

        .tip-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .tip-number {
            position: absolute;
            top: -15px;
            left: 20px;
            background: #24af4c;
            color: white;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-weight: bold;
            font-size: 0.9rem;
        }

        .tip-card h4 {
            color: var(--text-white);
            margin-bottom: 1rem;
            padding-top: 0.5rem;
            font-size: 1.1rem;
        }

        .tip-card p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .tip-metrics {
            display: flex;
            gap: 1rem;
        }

        .importance {
            font-size: 0.8rem;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
        }

        .importance.high {
            background: rgba(255, 59, 48, 0.2);
            color: #ff3b30;
        }

        .importance.medium {
            background: rgba(255, 149, 0, 0.2);
            color: #ff9500;
        }

        .expert-quote {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 2rem;
            margin-top: 2rem;
            position: relative;
        }

        .expert-quote i {
            position: absolute;
            top: 1rem;
            left: 1rem;
            color: rgba(36, 175, 76, 0.2);
            font-size: 2rem;
        }

        .expert-quote blockquote {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.8;
            padding-left: 1rem;
        }

        .quote-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .quote-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .quote-author h5 {
            color: var(--text-white);
            margin-bottom: 0.2rem;
            font-size: 1rem;
        }

        .quote-author span {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* Comparison Table Styles */
        .comparison-table-wrapper {
            overflow-x: auto;
            margin: 2rem 0;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            border-radius: 12px;
            overflow: hidden;
        }

        .comparison-table th, 
        .comparison-table td {
            padding: 1rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .comparison-table th {
            background: rgba(0, 0, 0, 0.3);
            color: var(--text-white);
            font-weight: 600;
        }

        .comparison-table td {
            color: rgba(255, 255, 255, 0.7);
        }

        .comparison-table tr:nth-child(even) td {
            background: rgba(255, 255, 255, 0.02);
        }

        .comparison-table .highlight {
            background: rgba(36, 175, 76, 0.1);
            color: #24af4c;
            font-weight: 600;
        }

        .comparison-table th.highlight {
            background: rgba(36, 175, 76, 0.3);
            color: white;
        }

        .testimonials-compact {
            margin-top: 3rem;
        }

        .testimonials-compact h4 {
            color: var(--text-white);
            margin-bottom: 1.5rem;
            text-align: center;
            font-size: 1.4rem;
        }

        .testimonials-slider {
            display: flex;
            gap: 2rem;
            justify-content: center;
        }

        .testimonial-slide {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 1.5rem;
            max-width: 400px;
            border-left: 4px solid #24af4c;
        }

        .testimonial-content p {
            color: rgba(255, 255, 255, 0.8);
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-author img {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-author h5 {
            color: var(--text-white);
            margin-bottom: 0.2rem;
            font-size: 1rem;
        }

        .rating i {
            color: #ffcc00;
            font-size: 0.8rem;
        }

        /* SEO Rich Content Styles */
        .seo-rich-content {
            margin-top: 5rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            padding: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .seo-rich-content h2 {
            text-align: center;
            color: var(--text-white);
            margin-bottom: 3rem;
            font-size: 2.2rem;
        }

        .rich-content-grid {
            /*display: grid;*/
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .rich-content-column h3 {
            color: var(--text-white);
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 0.8rem;
        }

        .rich-content_column p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .content-list, .benefits-list {
            margin-bottom: 2rem;
        }

        .content-list li, .benefits-list li {
            margin-bottom: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        .benefits-list li {
            position: relative;
            padding-left: 1.5rem;
        }

        .benefits-list li::before {
            content: "\f00c";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #24af4c;
        }

        .content-list li strong, .benefits-list li strong {
            color: var(--text-white);
        }

        .numbered-list {
            counter-reset: item;
            margin-bottom: 2rem;
        }

        .numbered-list li {
            counter-increment: item;
            margin-bottom: 1rem;
            color: rgba(255, 255, 255, 0.7);
            position: relative;
            padding-left: 2rem;
        }

        .numbered-list li::before {
            content: counter(item);
            background: #24af4c;
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
            position: absolute;
            left: 0;
            top: 0;
        }

        .warning-box {
            background: rgba(255, 59, 48, 0.1);
            border-radius: 8px;
            padding: 1.5rem;
            border-left: 4px solid #ff3b30;
        }

        .warning-box h4 {
            color: #ff3b30;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .warning-box p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        /* FAQ Styles */
        .faq-section {
            margin-top: 3rem;
        }

        .faq-section h3 {
            text-align: center;
            color: var(--text-white);
            margin-bottom: 2rem;
            font-size: 1.8rem;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .faq-item h4 {
            color: var(--text-white);
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .faq-item p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        /* CTA Section Styles */
        .cta-section {
            margin-top: 5rem;
            background: linear-gradient(135deg, rgba(36, 175, 76, 0.1) 0%, rgba(36, 175, 76, 0.02) 100%);
            border-radius: 16px;
            padding: 3rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .cta-content h2 {
            color: var(--text-white);
            margin-bottom: 1rem;
            font-size: 2rem;
        }

        .cta-content p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
        }

        .cta-image img {
            border-radius: 12px;
            width: 100%;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .grid-content, .rich-content-grid {
                gap: 2rem;
            }
            
            .seo-rich-content {
                padding: 2rem;
            }
        }

        @media (max-width: 992px) {
            .grid-content, .rich-content-grid, .cta-section {
                grid-template-columns: 1fr;
            }
            
            .analysis-types {
                grid-template-columns: 1fr;
            }
            
            .testimonials-slider {
                flex-direction: column;
                align-items: center;
            }
            
            .tab-btn {
                padding: 0.8rem 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .trading-info {
                padding: 4rem 0;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .strategy-list, .tips-container {
                grid-template-columns: 1fr;
            }
            
            .seo-rich-content {
                padding: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .tab-buttons {
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .tab-btn {
                width: 100%;
            }
            
            .cta-section {
                padding: 1.5rem;
            }
        }
