:root {
    --primary: #3C3A6A;
    --secondary: #322A52;
    --accent: #3DE0DE;
    --gradient: linear-gradient(135deg, #3C3A6A, #322A52);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.advantages {
    padding: 4rem 2rem;
    background: #ffffff;
    color: var(--primary);
}

.advantages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.advantages ul {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
}

.advantages ul li {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.advantages ul li::before {
    content: "\2022";
    color: var(--primary);
    font-weight: bold;
    display: inline-block;
    width: 1rem;
    margin-left: -1.5rem;
}

.back-home {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.back-home:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.clickable-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-decoration: none;
    z-index: 1;
}

.comparison-section {
    padding: 4rem 2rem;
    background: #f9f9fb;
    color: var(--primary);
}

.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    border: 1px solid #e1e4e8;
    text-align: left;
    font-size: 1rem;
}

.comparison-table th {
    background: var(--gradient);
    color: white;
    font-weight: 700;
}

.comparison-table td {
    background: white;
}

.contact-info {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.currency-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    border: 1px solid #e1e4e8;
}

.currency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.currency-icon {
    font-size: 1.25rem;
    font-weight: bold;
    color: #4a5568;
}

.currency-section {
    background: #f1f3f9;
    padding: 4rem 2rem;
}

.fca-notice {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: inline-block;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.fi-hero {
    background: var(--gradient);
    padding: 8rem 2rem 4rem;
    text-align: center;
    color: white;
    position: relative;
}

.fi-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.fi-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.footer-divider {
    margin: 20px 0;
    height: 1px;
    background-color: var(--accent);
    border: none;
}

footer {
    background: var(--secondary);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
}

footer a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary);
}

footer p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.highlight {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

h6 {
    margin: 0;
    font-size: 1.125rem;
    color: #1a1f36;
    font-weight: 600;
    justify-content: space-between;
}

.investability {
    padding: 4rem 2rem;
    background: #f1f3f9;
    color: var(--primary);
}

.investability h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.investability p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.navbar {
    background: rgba(60, 58, 106, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 1px;
}

.p {
    margin: 0.5rem 0;
    color: var(--primary);
    font-size: 0.875rem;
}

.rate {
    color: var(--accent);
    font-weight: 500;
}

.rate-section {
    position: relative;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.rate-section:hover {
    background-color: #f1f5f9;
}

.rate-section::after,
.reserves-container::after {
    content: '→';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.rate-section:hover::after,
.reserves-container:hover::after {
    opacity: 0.5;
}

.requirements-list {
    list-style: none;
    margin: 1.5rem 0;
}

.requirements-list li {
    margin: 0.8rem 0;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.5;
}

.requirements-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 12px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: translateY(-50%) rotate(45deg);
}

.reserves-container {
    position: relative;
    padding: 0.75rem;
    background-color: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    cursor: pointer;
    transition: all 0.2s ease;
}

.reserves-container:hover {
    background-color: #f1f5f9;
    transform: translateX(4px);
}

.reserves-container h3 {
    margin: 0.25rem 0 0 0;
    font-size: 1.5rem;
    color: #1a1f36;
    font-weight: 700;
}

.reserves-container p {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.section-title {
    text-align: center;
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.useful-links {
    margin-top: 15px;
    font-size: 1em;
}

.useful-links p {
    line-height: 1.8;
}

.value-proposition {
    padding: 4rem 2rem;
    background: #ffffff;
    color: var(--primary);
}

.value-proposition h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.value-proposition ul {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
}

.value-proposition ul li {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.value-proposition ul li::before {
    content: "\2022";
    color: var(--primary);
    font-weight: bold;
    display: inline-block;
    width: 1rem;
    margin-left: -1.5rem;
}
