/* 
* Veltrano - Центр помощи в планировании крупных покупок
* Основные стили
*/


:root {
    
    --color-primary: #2C3E50; 
    --color-secondary: #E67E22; 
    --color-accent: #3498DB; 
    --color-background: #F5F7FA; 
    --color-text: #333333; 
    --color-text-light: #7F8C8D; 
    --color-success: #27AE60; 
    --color-warning: #F39C12; 
    --color-error: #E74C3C; 
    --color-white: #FFFFFF;
    
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Source Sans 3', sans-serif;
    
    
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 4px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}


h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--color-primary);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-secondary);
}

ul, ol {
    margin-bottom: 20px;
    padding-left: 20px;
}


.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #D35400;
    color: var(--color-white);
}

.btn-secondary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: #1A2530;
    color: var(--color-white);
}

.btn-tertiary {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-text-light);
}

.btn-tertiary:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--color-text);
}

.btn-full {
    width: 100%;
}


.site-header {
    background-color: var(--color-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.headroom--pinned {
    transform: translateY(0);
}

.headroom--unpinned {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 50px;
    width: auto;
}

.language-tag {
    display: inline-block;
    margin-left: 10px;
    padding: 2px 6px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 3px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin: 0 15px;
}

.nav-list a {
    color: var(--color-primary);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-list a:hover, .nav-list a.active {
    color: var(--color-secondary);
}

.nav-list a.active::after, .nav-list a:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-secondary);
}

.contact-info-header {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.phone {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 5px;
}

.address-mini {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-style: normal;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    transition: var(--transition);
}


.hero-section {
    padding: 120px 0 80px;
    background-color: var(--color-white);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    flex: 0 0 50%;
    padding-right: 40px;
}

.hero-text h1 {
    color: var(--color-primary);
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 0 0 50%;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}


.advantages-section {
    padding: 80px 0;
    background-color: var(--color-background);
}

.advantages-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.advantage-card {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.advantage-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.advantage-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.advantage-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}


.how-it-works-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.how-it-works-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 4px;
    background-color: var(--color-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    padding-left: 80px;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    z-index: 1;
}

.timeline-content {
    background-color: var(--color-background);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.timeline-content h3 {
    margin-bottom: 15px;
}

.timeline-content p {
    margin-bottom: 20px;
}

.timeline-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}


.learning-modules-section {
    padding: 80px 0;
    background-color: var(--color-background);
}

.learning-modules-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.module-card {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.module-card h3 {
    color: var(--color-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.module-card h3 i {
    color: var(--color-secondary);
    margin-right: 10px;
}

.module-card ul {
    margin-bottom: 0;
}

.module-card li {
    margin-bottom: 10px;
    color: var(--color-text);
}

.module-card li:last-child {
    margin-bottom: 0;
}


.calculators-preview-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.calculators-preview-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.calculators-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.calculator-preview-card {
    background-color: var(--color-background);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.calculator-icon {
    width: 70px;
    height: 70px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.calculator-preview-card h3 {
    margin-bottom: 15px;
}

.calculator-preview-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

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


.common-mistakes-section {
    padding: 80px 0;
    background-color: var(--color-background);
}

.common-mistakes-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mistake-card {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.mistake-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-error);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.mistake-card h3 {
    margin-bottom: 15px;
}

.mistake-card p {
    color: var(--color-text);
    margin-bottom: 15px;
}

.solution {
    background-color: rgba(39, 174, 96, 0.1);
    border-left: 4px solid var(--color-success);
    padding: 15px;
    border-radius: 0 4px 4px 0;
}


.contact-form-section {
    padding: 80px 0;
    background-color: var(--color-primary);
    color: var(--color-white);
}

.contact-form-container {
    display: flex;
    gap: 50px;
}

.contact-form-text {
    flex: 0 0 40%;
}

.contact-form-text h2 {
    color: var(--color-white);
}

.contact-info {
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info-item i {
    color: var(--color-secondary);
    margin-right: 15px;
    font-size: 1.2rem;
}

.contact-info-item a, .contact-info-item address {
    color: var(--color-white);
    font-style: normal;
}

.contact-form-wrapper {
    flex: 0 0 60%;
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group:nth-child(3), .form-group:nth-child(4), .form-group:nth-child(5), .form-group:nth-child(6) {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-text);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 0.9rem;
}

.checkbox-group a {
    color: var(--color-accent);
}

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


.iti {
    width: 100%;
}


.results-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.results-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.result-card {
    background-color: var(--color-background);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.result-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.result-card h3 {
    margin-bottom: 15px;
}

.result-card p {
    color: var(--color-text);
    margin-bottom: 0;
}


.site-footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 60px 0 20px;
}

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

.footer-logo p {
    color: var(--color-text-light);
    margin-top: 10px;
}

.footer-nav h4, .footer-contact h4, .footer-legal h4 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-nav ul, .footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li, .footer-legal li {
    margin-bottom: 10px;
}

.footer-nav a, .footer-legal a {
    color: var(--color-text-light);
    transition: var(--transition);
}

.footer-nav a:hover, .footer-legal a:hover {
    color: var(--color-secondary);
}

.footer-contact address {
    font-style: normal;
    color: var(--color-text-light);
}

.footer-contact div {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--color-secondary);
}

.footer-contact a {
    color: var(--color-text-light);
}

.footer-contact a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin: 0;
}

.cookie-settings-button {
    background-color: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-text-light);
    padding: 8px 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    margin-top: 15px;
}

.cookie-settings-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}


.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    margin-bottom: 10px;
}

.cookie-content p {
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.cookie-settings-content {
    background-color: var(--color-white);
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-settings-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-settings-header h3 {
    margin: 0;
}

.cookie-settings-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-light);
}

.cookie-settings-body {
    padding: 20px;
}

.cookie-category {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

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

.cookie-checkbox {
    display: flex;
    align-items: center;
}

.cookie-checkbox input {
    margin-right: 10px;
}

.cookie-checkbox.disabled label {
    color: var(--color-text-light);
}

.cookie-always-on {
    background-color: var(--color-success);
    color: var(--color-white);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.8rem;
}

.cookie-settings-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}


.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--color-white);
    margin: auto;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: var(--color-text-light);
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
}

.modal-body {
    text-align: center;
}

.success-icon {
    color: var(--color-success);
    font-size: 4rem;
    margin-bottom: 20px;
}

.modal-body h3 {
    margin-bottom: 15px;
}

.modal-body p {
    color: var(--color-text-light);
    margin-bottom: 0;
}


.thanks-section {
    padding: 150px 0 80px;
    background-color: var(--color-white);
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    color: var(--color-success);
    font-size: 5rem;
    margin-bottom: 30px;
}

.thanks-content h1 {
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 50px;
}

.next-steps {
    margin-bottom: 60px;
}

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

.step-card {
    background-color: var(--color-background);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: left;
    display: flex;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 10px;
}

.step-content p {
    text-align: left;
    margin-bottom: 0;
}

.useful-resources {
    margin-bottom: 60px;
}

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

.resource-card {
    background-color: var(--color-background);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    display: block;
    color: var(--color-text);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    color: var(--color-text);
}

.resource-card i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.resource-card h3 {
    margin-bottom: 10px;
}

.resource-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.back-to-home {
    margin-top: 40px;
}


.page-header-section {
    padding: 150px 0 50px;
    background-color: var(--color-white);
    text-align: center;
}

.breadcrumbs {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.breadcrumbs a {
    color: var(--color-text-light);
}

.breadcrumbs a:hover {
    color: var(--color-secondary);
}

.mission-section {
    padding: 80px 0;
    background-color: var(--color-background);
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.mission-text {
    flex: 0 0 50%;
}

.mission-statement {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 30px;
    border-left: 4px solid var(--color-secondary);
    padding-left: 20px;
}

.mission-image {
    flex: 0 0 50%;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

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

.value-card {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.value-card h3 {
    margin-bottom: 15px;
}

.value-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.history-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.history-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.history-text {
    flex: 0 0 50%;
}

.history-image {
    flex: 0 0 50%;
}

.history-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.experience-section {
    padding: 80px 0;
    background-color: var(--color-background);
}

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

.experience-card {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.experience-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.experience-card h3 {
    margin-bottom: 15px;
}

.experience-card p {
    color: var(--color-text);
    margin-bottom: 0;
}

.education-format-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.format-content {
    margin-bottom: 50px;
}

.format-text {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

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

.format-card {
    background-color: var(--color-background);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.format-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.format-card h3 {
    margin-bottom: 15px;
}

.format-card p {
    color: var(--color-text);
    margin-bottom: 0;
}

.format-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.transparency-section {
    padding: 80px 0;
    background-color: var(--color-background);
}

.transparency-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.transparency-text {
    flex: 0 0 50%;
}

.transparency-image {
    flex: 0 0 50%;
}

.transparency-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.transparency-list {
    margin-top: 20px;
}

.transparency-list li {
    margin-bottom: 15px;
}

.transparency-list li:last-child {
    margin-bottom: 0;
}

.cta-section {
    padding: 80px 0;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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


.methods-intro-section {
    padding: 80px 0;
    background-color: var(--color-background);
}

.methods-intro-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.methods-intro-text {
    flex: 0 0 50%;
}

.methods-intro-image {
    flex: 0 0 50%;
}

.methods-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.method-section {
    padding: 80px 0;
}

.method-section:nth-child(odd) {
    background-color: var(--color-white);
}

.method-section:nth-child(even) {
    background-color: var(--color-background);
}

.method-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.method-content.reverse {
    flex-direction: row-reverse;
}

.method-text {
    flex: 0 0 60%;
}

.method-text h2 {
    margin-bottom: 20px;
}

.method-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--color-secondary);
}

.method-text p {
    margin-bottom: 20px;
}

.method-text ul {
    margin-bottom: 20px;
}

.method-text li {
    margin-bottom: 10px;
}

.method-image {
    flex: 0 0 40%;
}

.method-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}


.calculators-intro-section {
    padding: 80px 0;
    background-color: var(--color-background);
}

.calculators-intro-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.calculators-intro-text {
    flex: 0 0 50%;
}

.calculators-intro-image {
    flex: 0 0 50%;
}

.calculators-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.disclaimer {
    background-color: rgba(243, 156, 18, 0.1);
    border-left: 4px solid var(--color-warning);
    padding: 15px;
    border-radius: 0 4px 4px 0;
    font-size: 0.9rem;
    margin-top: 30px;
}

.calculator-section {
    padding: 80px 0;
}

.calculator-section:nth-child(odd) {
    background-color: var(--color-white);
}

.calculator-section:nth-child(even) {
    background-color: var(--color-background);
}

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

.calculator-content {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.calculator-form {
    flex: 0 0 50%;
}

.calculator-form-inner {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.calculator-results {
    flex: 0 0 50%;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
}

.results-header {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px 30px;
}

.results-header h3 {
    color: var(--color-white);
    margin: 0;
}

.results-content {
    padding: 30px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    color: rgba(255, 255, 255, 0.8);
}

.result-value {
    font-weight: 600;
}

.results-explanation {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px 30px;
    font-size: 0.9rem;
}

.results-explanation p {
    margin: 0;
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.calculator-tips {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 8px;
    padding: 30px;
}

.calculator-tips h3 {
    color: var(--color-accent);
    margin-bottom: 15px;
}

.calculator-tips ul {
    margin-bottom: 0;
}

.calculator-tips li {
    margin-bottom: 10px;
}

.calculator-tips li:last-child {
    margin-bottom: 0;
}

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

.credit-offer {
    background-color: rgba(44, 62, 80, 0.05);
    border-radius: 8px;
    padding: 20px;
}

.credit-offer h4 {
    margin-bottom: 15px;
    color: var(--color-primary);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.comparison-table th, .comparison-table td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background-color: rgba(0, 0, 0, 0.2);
}

.comparison-result td {
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.1);
}

.best-offer {
    background-color: rgba(39, 174, 96, 0.2);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.best-offer p {
    margin: 0;
}

.best-offer span {
    font-weight: 700;
}

input[type="range"] {
    width: 100%;
    margin: 10px 0;
}

.deposit-scenario-comparison {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.deposit-scenario-comparison h4 {
    color: var(--color-white);
    margin-bottom: 15px;
}


.contact-info-section {
    padding: 80px 0;
    background-color: var(--color-background);
}

.contact-info-content {
    display: flex;
    gap: 50px;
}

.contact-info-text {
    flex: 0 0 50%;
}

.contact-details {
    margin-top: 40px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info h3 {
    margin-bottom: 10px;
}

.contact-info address, .contact-info p {
    font-style: normal;
    color: var(--color-text-light);
    margin-bottom: 5px;
}

.contact-info a {
    color: var(--color-accent);
    font-weight: 500;
}

.contact-info a:hover {
    color: var(--color-secondary);
}

.work-hours {
    font-size: 0.9rem;
    margin-top: 5px;
}

.contact-map {
    flex: 0 0 50%;
}

.contact-map h3 {
    margin-bottom: 20px;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-directions-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.directions-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.direction-card {
    background-color: var(--color-background);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.direction-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.direction-card h3 {
    margin-bottom: 15px;
}

.direction-card p {
    color: var(--color-text);
    margin-bottom: 0;
}

.contact-hours-section {
    padding: 80px 0;
    background-color: var(--color-background);
}

.hours-content {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

.hours-table-container {
    flex: 0 0 50%;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.hours-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

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

.hours-table td:first-child {
    font-weight: 600;
    color: var(--color-primary);
}

.hours-notes {
    flex: 0 0 50%;
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.hours-notes p {
    margin-bottom: 20px;
}

.hours-notes p:last-child {
    margin-bottom: 0;
}


.legal-content-section {
    padding: 60px 0 80px;
    background-color: var(--color-white);
}

.update-date {
    color: var(--color-text-light);
    font-style: italic;
    margin-top: 10px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-intro {
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    color: var(--color-primary);
    margin-bottom: 20px;
}

.legal-section h3 {
    color: var(--color-secondary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-section p, .legal-section ul, .legal-section ol {
    margin-bottom: 20px;
}

.legal-section p:last-child, .legal-section ul:last-child, .legal-section ol:last-child {
    margin-bottom: 0;
}

.cookie-management-section {
    padding: 60px 0;
    background-color: var(--color-background);
    text-align: center;
}

.cookie-management-section h2 {
    margin-bottom: 20px;
}

.cookie-management-section p {
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content, 
    .mission-content, 
    .history-content, 
    .transparency-content,
    .methods-intro-content,
    .calculators-intro-content,
    .contact-info-content,
    .hours-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-text, 
    .mission-text, 
    .history-text, 
    .transparency-text,
    .methods-intro-text,
    .calculators-intro-text,
    .contact-info-text,
    .hours-table-container,
    .hours-notes {
        flex: 0 0 100%;
    }
    
    .hero-image, 
    .mission-image, 
    .history-image, 
    .transparency-image,
    .methods-intro-image,
    .calculators-intro-image,
    .contact-map {
        flex: 0 0 100%;
    }
    
    .contact-form-container {
        flex-direction: column;
    }
    
    .contact-form-text, 
    .contact-form-wrapper {
        flex: 0 0 100%;
    }
    
    .method-content, 
    .method-content.reverse {
        flex-direction: column;
    }
    
    .method-text, 
    .method-image {
        flex: 0 0 100%;
    }
    
    .calculator-content {
        flex-direction: column;
    }
    
    .calculator-form, 
    .calculator-results {
        flex: 0 0 100%;
    }
}

@media (max-width: 991px) {
    .header-inner {
        flex-wrap: wrap;
        height: auto;
        padding: 15px 0;
    }
    
    .logo-container {
        flex: 0 0 50%;
    }
    
    .contact-info-header {
        flex: 0 0 50%;
        align-items: flex-end;
    }
    
    .main-nav {
        flex: 0 0 100%;
        order: 3;
        margin-top: 15px;
    }
    
    .hero-section {
        padding: 140px 0 60px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .advantages-grid,
    .modules-grid,
    .calculators-preview-grid,
    .mistakes-grid,
    .results-grid,
    .values-grid,
    .experience-grid,
    .format-grid,
    .directions-content,
    .resources-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 20px;
        z-index: 1000;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-list li {
        margin: 10px 0;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group:nth-child(1), 
    .form-group:nth-child(2) {
        grid-column: span 1;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-settings-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .credit-offers {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo-container, 
    .contact-info-header {
        flex: 0 0 100%;
        margin-bottom: 10px;
    }
    
    .contact-info-header {
        align-items: flex-start;
    }
    
    .hero-section {
        padding: 120px 0 40px;
    }
    
    .page-header-section {
        padding: 120px 0 40px;
    }
    
    .advantage-card, 
    .module-card, 
    .calculator-preview-card, 
    .mistake-card, 
    .result-card,
    .value-card,
    .experience-card,
    .format-card,
    .direction-card {
        padding: 20px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .calculator-form-inner {
        padding: 20px;
    }
    
    .results-header, 
    .results-content, 
    .results-explanation {
        padding: 15px;
    }
    
    .calculator-tips {
        padding: 20px;
    }
}