:root {
    --terracotta-primary: #D4705D;
    --terracotta-dark: #B85846;
    --terracotta-light: #E89382;
    --sage-primary: #8FA896;
    --sage-dark: #6B8876;
    --sage-light: #B5CABF;
    --warm-beige: #E8D7C3;
    --clay-brown: #B67352;
    --earth-dark: #5F7A69;
    --cream-light: #F5F1EC;
    --sand-medium: #D9C9B5;
    --text-primary: #2D3E35;
    --text-secondary: #5F7A69;
    --text-light: #8FA896;
    --accent-warm: #E8A87C;
    --accent-cool: #7A9B8A;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F1EC;
    --bg-tertiary: #E8D7C3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.navigation {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--sage-primary) 0%, var(--earth-dark) 100%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 45px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--warm-beige);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.lang-switcher {
    margin-left: 10px;
}

.lang-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-link:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--warm-beige) 100%);
    padding: 80px 0 60px;
    overflow: hidden;
}

.hero-overlay {
    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 1440 320"><path fill="%23f5f1ec" fill-opacity="0.3" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInLeft 1s ease;
}

.hero-tag {
    display: inline-block;
    background: var(--sage-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--terracotta-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(212,112,93,0.3);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,112,93,0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--sage-primary);
}

.btn-secondary:hover {
    background: var(--sage-primary);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

.hero-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.hero-stats {
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.stat-item i {
    font-size: 36px;
    color: var(--terracotta-primary);
    margin-bottom: 15px;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
}

.intro-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-tag {
    display: inline-block;
    background: var(--warm-beige);
    color: var(--text-primary);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

.intro-text {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--cream-light);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.feature-badge i {
    color: var(--sage-primary);
    font-size: 18px;
}

.intro-image {
    position: relative;
}

.intro-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.intro-image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255,255,255,0.95);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.overlay-stat {
    text-align: center;
}

.overlay-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--terracotta-primary);
    margin-bottom: 5px;
}

.overlay-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.calculator-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 15px;
}

.calculator-box {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.calculator-input {
    margin-bottom: 50px;
}

.calc-label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.amount-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.currency-symbol {
    font-size: 32px;
    font-weight: 700;
    color: var(--sage-primary);
}

.amount-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    border: none;
    background: transparent;
    text-align: center;
    width: 200px;
}

.currency-code {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

.slider {
    margin: 30px 0;
}

.noUi-target {
    background: var(--cream-light);
    border: none;
    box-shadow: none;
    height: 10px;
    border-radius: 10px;
}

.noUi-connect {
    background: linear-gradient(90deg, var(--sage-primary), var(--terracotta-primary));
}

.noUi-handle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--terracotta-primary);
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
}

.noUi-handle::before,
.noUi-handle::after {
    display: none;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 10px;
}

.results-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-align: center;
}

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

.result-card {
    background: var(--cream-light);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-best {
    background: linear-gradient(135deg, var(--sage-light), var(--warm-beige));
    border: 2px solid var(--sage-primary);
}

.best-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--terracotta-primary);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212,112,93,0.3);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0,0,0,0.1);
}

.result-provider {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.result-badge {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.badge-standard {
    background: var(--sand-medium);
    color: var(--text-primary);
}

.badge-digital {
    background: var(--sage-primary);
    color: white;
}

.badge-bank {
    background: var(--clay-brown);
    color: white;
}

.result-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}

.detail-label {
    color: var(--text-secondary);
}

.detail-value {
    font-weight: 600;
    color: var(--text-primary);
}

.detail-total {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid rgba(0,0,0,0.1);
}

.detail-total .detail-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.detail-total .detail-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--terracotta-primary);
}

.calculator-note {
    background: var(--warm-beige);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--terracotta-primary);
    display: flex;
    gap: 15px;
}

.calculator-note i {
    color: var(--terracotta-primary);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 3px;
}

.calculator-note p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.comparison-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}

.comparison-image {
    position: sticky;
    top: 100px;
}

.comparison-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.comparison-table-container {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--sage-primary), var(--earth-dark));
    color: white;
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--cream-light);
    transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
    background: var(--bg-secondary);
}

.comparison-table td {
    padding: 18px 20px;
    font-size: 14px;
}

.feature-name {
    font-weight: 600;
    color: var(--text-primary);
}

.check-yes {
    color: var(--sage-primary);
    font-size: 18px;
}

.check-no {
    color: var(--terracotta-primary);
    font-size: 18px;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background: var(--cream-light);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--terracotta-primary), var(--terracotta-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 32px;
    color: white;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.card-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.benefits-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.benefit-number {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--terracotta-primary), var(--terracotta-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(212,112,93,0.4);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--cream-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.benefit-icon i {
    font-size: 32px;
    color: var(--sage-primary);
}

.benefit-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.benefit-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.benefits-image-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-image-wrapper {
    position: relative;
}

.benefits-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.benefits-content {
    padding: 30px;
}

.content-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.content-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-box {
    background: var(--cream-light);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--terracotta-primary);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
}

.services-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-description {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item {
    display: flex;
    gap: 20px;
    align-items: start;
    background: var(--cream-light);
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-item i {
    font-size: 28px;
    color: var(--sage-primary);
    flex-shrink: 0;
    margin-top: 5px;
}

.service-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.service-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.services-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.trust-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trust-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.trust-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.trust-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.trust-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 18px 25px;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
}

.trust-feature i {
    color: var(--sage-primary);
    font-size: 22px;
}

.community-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.community-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 500px;
}

.community-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.community-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45,62,53,0.85), rgba(95,122,105,0.85));
    display: flex;
    align-items: center;
    justify-content: center;
}

.community-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 40px;
}

.community-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.community-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.community-stats-wrapper {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.community-stat {
    text-align: center;
}

.community-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--warm-beige);
    margin-bottom: 10px;
}

.community-label {
    font-size: 16px;
    opacity: 0.9;
}

.contact-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

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

.form-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--cream-light);
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    color: var(--text-primary);
    transition: all 0.3s ease;
    background: var(--bg-primary);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--sage-primary);
    box-shadow: 0 0 0 3px rgba(143,168,150,0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-top: 20px;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.checkbox-text a {
    color: var(--sage-primary);
    text-decoration: none;
    font-weight: 500;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

.iti {
    width: 100%;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-info-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--cream-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 22px;
    color: var(--sage-primary);
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.footer {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--earth-dark) 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links,
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-contact li {
    font-size: 14px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--warm-beige);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 14px;
    opacity: 0.8;
}

.cookie-settings-link {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-settings-link:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: var(--bg-secondary);
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    background: white;
    padding: 60px 50px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--sage-primary), var(--sage-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon i {
    font-size: 50px;
    color: white;
}

.thanks-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-submessage {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-info {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    justify-content: center;
}

.info-box {
    background: var(--cream-light);
    padding: 25px;
    border-radius: 15px;
    flex: 1;
    max-width: 250px;
}

.info-box i {
    font-size: 32px;
    color: var(--sage-primary);
    margin-bottom: 15px;
}

.info-box p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.thanks-extra {
    background: var(--warm-beige);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.thanks-extra h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.thanks-extra p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.legal-page {
    padding: 100px 0;
    background: var(--bg-primary);
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--cream-light);
}

.legal-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.legal-date {
    font-size: 16px;
    color: var(--text-secondary);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section:last-of-type {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--warm-beige);
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 25px 0 15px;
}

.legal-section p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0 20px 30px;
}

.legal-section li {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-section a {
    color: var(--sage-primary);
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    margin: 25px 0;
    border-collapse: collapse;
    background: var(--cream-light);
    border-radius: 12px;
    overflow: hidden;
}

.cookie-table thead {
    background: var(--sage-primary);
    color: white;
}

.cookie-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.cookie-table td {
    padding: 12px 15px;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

.legal-signature {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--cream-light);
    text-align: center;
}

.legal-signature p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.legal-navigation {
    max-width: 900px;
    margin: 40px auto 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.2);
    padding: 30px 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.cookie-consent-text p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cookie-consent-text a {
    color: var(--sage-primary);
    text-decoration: none;
    font-weight: 500;
}

.cookie-consent-text a:hover {
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: var(--sage-primary);
    color: white;
}

.cookie-btn-accept:hover {
    background: var(--sage-dark);
}

.cookie-btn-decline {
    background: var(--cream-light);
    color: var(--text-primary);
}

.cookie-btn-decline:hover {
    background: var(--sand-medium);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--sage-primary);
}

.cookie-btn-settings:hover {
    background: var(--sage-primary);
    color: white;
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--cream-light);
}

.cookie-modal-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 30px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-modal-close:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

.cookie-category {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--cream-light);
    border-radius: 15px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cookie-category-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--sand-medium);
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--sage-primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-category-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cookie-modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid var(--cream-light);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@media (max-width: 1024px) {
    .hero-content,
    .intro-grid,
    .comparison-wrapper,
    .benefits-image-section,
    .services-content,
    .trust-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        background: var(--sage-primary);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .calculator-box {
        padding: 30px 20px;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .cookie-consent-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-consent-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }

    .thanks-content {
        padding: 40px 30px;
    }

    .thanks-info {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 26px;
    }

    .amount-value {
        font-size: 36px;
        width: 150px;
    }

    .community-title {
        font-size: 28px;
    }

    .community-stats-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .legal-title {
        font-size: 32px;
    }
}