 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #1f2937;
            background-color: #f9fafb;
        }
        li {
    margin-left: 10px;
}
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        a {
    text-decoration: none;
}
        /* Header */
        header {
            background: white;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 50;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.25rem;
            font-weight: bold;
            color: #574321;
        }
        
        .nav-links {
            display: none;
            gap: 2rem;
        }
        
        .nav-links a {
            color: #6b7280;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #b78228;
        }
        
        .cta-button {
            background: linear-gradient(135deg, #000000 0%, #ba8f47 100%);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 0.5rem;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .cta-button:hover {
            background: #b78228;
        }
        
        /* Hero Section */
        .hero {
               background: linear-gradient(135deg, #946d2a 0%, #a9997d61 100%);
            color: white;
            padding: 4rem 0;
        }
        
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }
        
        .hero-content h1 {
            font-size: 2.25rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .accent-text {
            color: #000;
        }
        
        .hero-content p {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }
        
        .features {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .feature i {
            color: #fff;
        }
        
        .hero-button {
            background: linear-gradient(135deg, #000000 0%, #ba8f47 100%);
            color: white;
            padding: 1rem 2rem;
            border-radius: 0.5rem;
            border: none;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            box-shadow: 15px 15px 11px 0 rgba(0, 0, 0, .33);
        }
        
        .hero-button:hover {
            background: #33230a;
        }
        
        .calculator {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        
        .calculator h3 {
            font-size: 1.5rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            color: #6b7280;
            margin-bottom: 0.5rem;
        }
        
        input[type="range"] {
            width: 100%;
            height: 6px;
            border-radius: 3px;
            background: #e5e7eb;
                color: light-dark(rgb(16, 16, 16), rgb(255, 255, 255));
            outline: none;
        }
        .range-labels {
            display: flex;
            justify-content: space-between;
            color: #6b7280;
            font-size: 0.875rem;
            margin-top: 0.5rem;
        }
        
        .highlight {
            color: #60471d;
            font-weight: bold;
        }
        
        .result-box {
            background: #f9fafb;
            border-radius: 0.5rem;
            padding: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        .result-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }
        
        .result-amount {
            font-size: 1rem;
            font-weight: bold;
            color: #60471d;
        }
        
        .result-note {
            font-size: 0.875rem;
            color: #6b7280;
        }
        
        .calculator-button {
            width: 100%;
            background: linear-gradient(135deg, #000000 0%, #ba8f47 100%);
            color: white;
            padding: 0.75rem;
            border-radius: 0.5rem;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s;
            box-shadow: 15px 15px 11px 0 rgba(0, 0, 0, .33);
        }
        
        .calculator-button:hover {
            background: #000;
        }
        
        /* Sections */
        section {
            padding: 2rem 0;
        }
        
        .section-title {
            font-size: 1.875rem;
            font-weight: bold;
            text-align: center;
            color: #fff;
            margin-bottom: 3rem;
        }
        
        .section-title_feedback, .section-title_wy_we {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    color: #000;
    margin-bottom: 3rem;
}

        
        /* Advantages */
        .advantages-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .advantage-card {
            text-align: center;
            padding: 1.5rem;
        }
        
        .icon-circle {
            background: linear-gradient(135deg, #000000 0%, #ba8f47 100%);
            border-radius: 50%;
            width: 4rem;
            height: 4rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }
        
        .icon-circle i {
            color: white;
            font-size: 1.5rem;
        }
        
        .advantage-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }
        
        .advantage-card p {
            color: #6b7280;
        }
        
        /* How to Get */
        .steps-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .step, .step2 {
            text-align: center;
                margin: 30px 0;
        }
        
        .step-number {
            background: #000;
            color: white;
            border-radius: 50%;
            width: 3rem;
            height: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-weight: bold;
        }
        
        .step h3 {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .step p {
            color: #fff;
            font-size: 0.875rem;
        }
         .step2 p {
            color: #635c5c;
            font-size: 0.875rem;
        }
        
        /* Reviews */
        .reviews-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .review-card {
            background: #f9fafb;
            border-radius: 0.5rem;
            padding: 1.5rem;
        }
        
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .avatar {
    margin-right: 1rem;
    align-items: center;
    background-image: linear-gradient(135deg, #000000 0%, #ba8f47 100%);
    border-radius: 50%;
    color: #fff;
    display: flex
;
    height: 27px;
    justify-content: center;
    width: 27px;
    padding: 16px;
        }
        
        .reviewer-name {
            font-weight: 600;
        }
        
        .stars {
            color: #f59e0b;
        }
        
        .review-text {
            color: #6b7280;
            font-style: italic;
        }
        
        /* FAQ */
        .faq-container {
            max-width: 48rem;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: 0.5rem;
            padding: 1.5rem;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
            margin-bottom: 1rem;
        }
        
        .faq-item h3 {
            font-weight: 600;
            font-size: 1.125rem;
            margin-bottom: 0.5rem;
        }
        
        .faq-item p {
            color: #6b7280;
        }
        
        /* Footer */
        footer {
            background: #1f2937;
            color: white;
            padding: 3rem 0;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .footer-section h4 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .footer-section p {
            color: #9ca3af;
            font-size: 0.875rem;
        }
        
        .contact-info {
            color: #9ca3af;
            font-size: 0.875rem;
        }
        
        .contact-info p {
            margin-bottom: 0.5rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-links a {
            color: #9ca3af;
            font-size: 1.25rem;
            transition: color 0.3s;
        }
        
        .social-links a:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 2rem;
            margin-top: 2rem;
            text-align: center;
            color: #9ca3af;
            font-size: 0.875rem;
        }
        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background-color: white;
            border-radius: 0.75rem;
            padding: 1.5rem;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        
        .flex {
            display: flex;
        }
        
        .justify-between {
            justify-content: space-between;
        }
        
        .items-center {
            align-items: center;
        }
        
        .mb-6 {
            margin-bottom: 1.5rem;
        }
        
        .text-xl {
            font-size: 1.25rem;
        }
        
        .font-bold {
            font-weight: bold;
        }
        
        .text-gray-500 {
            color: #6b7280;
        }
        
        .hover\:text-gray-700:hover {
            color: #374151;
        }
        
        .mb-4 {
            margin-bottom: 1rem;
        }
        
        .block {
            display: block;
        }
        
        .text-gray-700 {
            color: #374151;
        }
        
        .mb-2 {
            margin-bottom: 0.5rem;
        }
        
        .w-full {
            width: 100%;
        }
        
        .py-3 {
            padding-top: 0.75rem;
            padding-bottom: 0.75rem;
        }
        
        .px-4 {
            padding-left: 1rem;
            padding-right: 1rem;
        }
        
        .border {
            border-width: 1px;
        }
        
        .border-gray-300 {
            border-color: #d1d5db;
        }
        
        .rounded-lg {
            border-radius: 0.5rem;
        }
        
        .input-field {
            transition: border-color 0.3s;
        }
        
        .focus\:outline-none:focus {
            outline: none;
        }
        
        .focus\:border-indigo-500:focus {
            border-color: #6366f1;
        }
        
        .relative {
            position: relative;
        }
        
        .absolute {
            position: absolute;
        }
        
        .inset-y-0 {
            top: 0;
            bottom: 0;
        }
        
        .left-0 {
            left: 0;
        }
        
        .pl-3 {
            padding-left: 0.75rem;
        }
        
        .pointer-events-none {
            pointer-events: none;
        }
        
        .phone-input {
            padding-left: 3rem;
        }
        
        .gradient-bg {
                background: linear-gradient(135deg, #000000 0%, #ba8f47 100%);
                box-shadow: 15px 15px 11px 0 rgba(0, 0, 0, .33);
        }
        
        .text-white {
            color: white;
        }
        
        .py-4 {
            padding-top: 1rem;
            padding-bottom: 1rem;
        }
        
        .px-6 {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }
        
        .hover\:opacity-90:hover {
            opacity: 0.9;
        }
        
        .transition {
            transition-property: all;
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-duration: 150ms;
        }
        
        .duration-300 {
            transition-duration: 300ms;
        }
        
        .text-xs {
            font-size: 0.75rem;
        }
        
        .mt-4 {
            margin-top: 1rem;
        }
        
        /* Responsive */
        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }
            
            .hero-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .hero-content h1 {
                font-size: 3rem;
            }
            
            .advantages-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .steps-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .reviews-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .container {
                padding: 0 2rem;
            }
            
            .hero-content h1 {
                font-size: 3.75rem;
            }
        }
        
        /* Utility Classes */
        .bg-white {
            background-color: white;
        }
        
        .bg-gray-100 {
            background: linear-gradient(135deg, #946d2a 0%, #a9997d61 100%)
        }
        
        .text-gray-800 {
            color: #1f2937;
        }
        
        .text-gray-600 {
            color: #6b7280;
        }
        
        .text-gray-400 {
            color: #9ca3af;
        }
        
        .text-primary {
            color: #2563eb;
        }
        
        .text-accent {
            color: #f59e0b;
        }
        /* FAQ Accordion Styles */
.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #240533;
    box-shadow: 0 2px 8px rgba(36, 5, 51, 0.1);
}

.faq-question {
    padding: 16px 20px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-question h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

.faq-toggle {
    transition: transform 0.3s ease;
    color: #6b7280;
}

.faq-answer {
    padding: 0 20px;
    background: white;
    border-top: 1px solid #f3f4f6;
}

.faq-answer p {
    margin: 0;
    padding: 16px 0;
    color: #6b7280;
    line-height: 1.6;
}
/* Стили для отзывов и карусели */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

/* Мобильная карусель */
@media (max-width: 768px) {
    .reviews-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin: 40px  20px;
        padding: 0 20px;
    }
    
    .reviews-grid::-webkit-scrollbar {
        display: none;
    }
    
    .review-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
        margin-right: 20px;
    }
    
    .carousel-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
    }
    
    .carousel-prev,
    .carousel-next {
        background: #240533;
        color: white;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .carousel-prev:hover,
    .carousel-next:hover {
        background: #3a0a52;
    }
    
    .carousel-dots {
        display: flex;
        gap: 8px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #d1d5db;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .carousel-dot.active {
        background: #240533;
    }
    
    .mobile-only {
        display: flex;
    }
}

@media (min-width: 769px) {
    .mobile-only {
        display: none;
    }
}
.custom_buttons{
    padding: 20px;
    max-width: 400px;
    text-align: center;
    margin: auto;
}
.contact-info a {
    color: #9ca3af;
    text-decoration: none;
}
.step-icon {
       width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #000000 0%, #ba8f47 100%);
    border-radius: 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.step:hover .step-icon {
    transform: scale(1.1);
}
input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #b78228;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 15px 0;
}

/* Webkit - монета */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    /*background: radial-gradient(circle at 30% 30%, #fde68a, #f59e0b, #b45309);*/
    background: url('../images/coin.png') center/cover no-repeat;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

input[type="range"]::-webkit-slider-thumb::before {
    content: "₽";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #92400e;
    font-weight: bold;
    font-size: 16px;
}

input[type="range"]::-webkit-slider-track {
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
}

/* Firefox - монета */
input[type="range"]::-moz-range-thumb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fde68a, #f59e0b, #b45309);
    cursor: pointer;
    border: 3px solid #92400e;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

input[type="range"]::-moz-range-track {
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    border: none;
}

input[type="range"]::-moz-range-progress {
    background: #240533;
    height: 6px;
    border-radius: 3px;
}
/* Requirements Section */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.requirement-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8fafc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.requirement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.requirement-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.requirement-card p {
    color: #718096;
    line-height: 1.6;
}
.feedback{
    background: linear-gradient(135deg, #b78228 0%, #a9997d61 100%);
}
/* SEO Section Styles */
.seo-section {
    padding: 4rem 0;
}

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

.seo-text {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.seo-text h3 {
    color: #60471d;
    margin: 2rem 0 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.seo-text p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.seo-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.seo-list li {
    color: #6b7280;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.seo-list strong {
    color: #1f2937;
}

.seo-cta {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #b78228;
    margin-top: 2rem;
    text-align: center;
}

.seo-cta p {
    margin-bottom: 1rem;
    color: #1f2937;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .seo-text {
        padding: 1.5rem;
    }
    
    .seo-cta {
        padding: 1rem;
    }
}
.term-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
}

.term-select:focus {
    outline: none;
    border-color: #240533;
    box-shadow: 0 0 0 3px rgba(36, 5, 51, 0.1);
}

.term-select:hover {
    border-color: #cbd5e0;
}
.cities-grid, .check-item{
    text-align: center;
}
.check-list li{
        list-style: none;
}
.nav-links {
    list-style: none;
    padding-left: 0;
}
.nav-item.dropdown .dropdown-menu {
    max-height: 400px; /* Ограничение высоты */
    overflow-y: auto;  /* Прокрутка если не помещается */
    width: 250px;      /* Фиксированная ширина */
}
.btn-outline-primary {
    color: #241c0e;
    border-color: #886934;
}
.city-links{
display: inline-block;
}
.city-links a {
        margin: 5px;
}
@media (max-width: 768px) {
    button.hero-button {
    margin: auto;
    display: block;
}}
.warning-box .warning-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.warning-box .warning-content i {
    flex-shrink: 0;
    margin-top: 6px;
    color: #9c783c;
}

.warning-box .warning-content p {
    margin: 0;
    flex: 1;
}

    /* Дополнительные стили для статьи */
    .article-breadcrumbs {
        margin-bottom: 20px;
        font-size: 14px;
        color: #666;
    }
    
    .article-breadcrumbs a {
        color: #4f46e5;
        text-decoration: none;
    }
    
    .article-breadcrumbs a:hover {
        text-decoration: underline;
    }
    
    .article-breadcrumbs span {
        color: #666;
    }
    
    .article-header {
        margin-bottom: 40px;
    }
    
    .article-header h1 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .article-meta {
        display: flex;
        gap: 20px;
        margin-bottom: 25px;
        color: #6b7280;
        font-size: 14px;
    }
    
    .meta-item {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .article-lead {
        background: #f3f4f6;
        padding: 20px;
        border-radius: 8px;
        margin-bottom: 30px;
        border-left: 4px solid #554120;
    }
    
    .article-lead p {
        margin: 0;
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .article-toc {
        background: #f9fafb;
        padding: 25px;
        border-radius: 8px;
        border: 1px solid #e5e7eb;
    }
    
    .article-toc h3 {
        margin-top: 0;
        margin-bottom: 15px;
        color: #1f2937;
        font-size: 1.2rem;
    }
    
    .article-toc ul {
        margin: 0;
        padding-left: 20px;
    }
    
    .article-toc li {
        margin-bottom: 8px;
    }
    
    .article-toc a {
        color: #4f46e5;
        text-decoration: none;
    }
    
    .article-toc a:hover {
        text-decoration: underline;
    }
    
    .article-section {
        margin-bottom: 50px;
    }
    
    .article-section h2 {
        font-size: 1.8rem;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 25px;
        padding-bottom: 10px;
        border-bottom: 2px solid #e5e7eb;
    }
    
    .article-section h3 {
        font-size: 1.4rem;
        font-weight: 600;
        color: #374151;
        margin: 25px 0 15px;
    }
    
    .comparison-table {
        overflow-x: auto;
        margin: 25px 0;
    }
    
    .comparison-table table {
        width: 100%;
        border-collapse: collapse;
        background: white;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    
    .comparison-table th {
        background: #765b2d;
        color: white;
        padding: 15px;
        text-align: left;
        font-weight: 600;
    }
    
    .comparison-table td {
        padding: 15px;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .comparison-table tr:nth-child(even) {
        background: #f9fafb;
    }
    
    .comparison-table tr:hover {
        background: #f3f4f6;
    }
    
    .article-important {
        background: #fef3c7;
        border: 1px solid #f59e0b;
        border-radius: 8px;
        padding: 20px;
        margin: 25px 0;
        display: flex;
        gap: 15px;
    }
    
    .important-icon {
        color: #d97706;
        font-size: 1.5rem;
        flex-shrink: 0;
    }
    
    .important-content h4 {
        margin: 0 0 10px 0;
        color: #92400e;
    }
    
    .important-content p {
        margin: 0;
        color: #92400e;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin: 25px 0;
    }
    
    .feature-card {
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        text-align: center;
    }
    
    .feature-icon {
        font-size: 2rem;
        color: #6f562b;
        margin-bottom: 15px;
    }
    
    .feature-card h4 {
        margin: 0 0 10px 0;
        color: #1f2937;
    }
    
    .feature-card p {
        margin: 0;
        color: #6b7280;
        font-size: 0.95rem;
    }
    
    .calculator-simple {
        background: #f0f9ff;
        padding: 20px;
        border-radius: 8px;
        margin: 20px 0;
        border-left: 4px solid #0ea5e9;
    }
    
    .calculation-example {
        background: white;
        padding: 15px;
        border-radius: 6px;
        margin-top: 15px;
    }
    
    .numbered-list {
        padding-left: 20px;
        margin: 20px 0;
    }
    
    .numbered-list li {
        margin-bottom: 10px;
        padding-left: 10px;
    }
    
    .article-tip {
        background: #ecfdf5;
        border: 1px solid #10b981;
        border-radius: 8px;
        padding: 20px;
        margin: 25px 0;
        display: flex;
        gap: 15px;
    }
    
    .tip-icon {
        color: #059669;
        font-size: 1.5rem;
        flex-shrink: 0;
    }
    
    .tip-content h4 {
        margin: 0 0 10px 0;
        color: #065f46;
    }
    
    .tip-content p {
        margin: 0;
        color: #065f46;
    }
    
    .methods-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin: 25px 0;
    }
    
    .method-card {
        background: white;
        padding: 20px;
        border-radius: 8px;
        text-align: center;
        border: 1px solid #e5e7eb;
    }
    
    .method-icon {
        font-size: 2rem;
        color: #6f562b;
        margin-bottom: 15px;
    }
    
    .method-card h4 {
        margin: 0 0 10px 0;
        color: #1f2937;
    }
    
    .method-card p {
        margin: 0;
        color: #6b7280;
        font-size: 0.9rem;
    }
    
    .documents-list {
        margin: 25px 0;
    }
    
    .document-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .document-item.required {
        background: #fef2f2;
    }
    
    .document-item.optional {
        background: #f0f9ff;
    }
    
    .doc-icon {
        font-size: 1.5rem;
        color: #6f562b;
        flex-shrink: 0;
    }
    
    .doc-content h4 {
        margin: 0 0 5px 0;
        color: #1f2937;
    }
    
    .doc-content p {
        margin: 0;
        color: #6b7280;
    }
    
    .article-warning {
        background: #fef2f2;
        border: 1px solid #ef4444;
        border-radius: 8px;
        padding: 20px;
        margin: 25px 0;
        display: flex;
        gap: 15px;
    }
    
    .warning-icon {
        color: #dc2626;
        font-size: 1.5rem;
        flex-shrink: 0;
    }
    
    .warning-content h4 {
        margin: 0 0 15px 0;
        color: #991b1b;
    }
    
    .warning-content ul {
        margin: 0;
        padding-left: 20px;
        color: #991b1b;
    }
    
    .warning-content li {
        margin-bottom: 5px;
    }
    
    .mistakes-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin: 30px 0;
    }
    
    .mistake-card {
        background: white;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        position: relative;
    }
    
    .mistake-number {
        position: absolute;
        top: -15px;
        left: -15px;
        background: #ef4444;
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.2rem;
    }
    
    .mistake-card h4 {
        margin: 10px 0 15px 0;
        color: #1f2937;
        font-size: 1.2rem;
    }
    
    .mistake-card p {
        margin: 10px 0;
        color: #6b7280;
    }
    
    .mistake-card p strong {
        color: #1f2937;
    }
    
    .checklist {
        background: #f9fafb;
        padding: 25px;
        border-radius: 8px;
        margin: 25px 0;
    }
    
    .checklist-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .checklist-item:last-child {
        margin-bottom: 0;
    }
    
    .green-check {
        color: #10b981;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .article-cta-box {
        background: linear-gradient(135deg, #946d2a 0%, #a9997d61 100%);
        color: white;
        padding: 30px;
        border-radius: 12px;
        margin: 40px 0;
        text-align: center;
    }
    
    .article-cta-box h3 {
        color: white;
        margin: 0 0 15px 0;
        font-size: 1.8rem;
    }
    
    .article-cta-box p {
        margin: 0 0 25px 0;
        font-size: 1.1rem;
        opacity: 0.9;
        color: black;
    }
    
    .article-cta-button {
        background: white;
        color: #49381c;
        border: none;
        padding: 15px 30px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 8px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
    }
    
    .article-cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }
    
    .repayment-methods {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin: 25px 0;
    }
    
    .repayment-card {
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    
    .repayment-card h4 {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 0 0 10px 0;
        color: #1f2937;
    }
    
    .repayment-card p {
        margin: 0;
        color: #6b7280;
    }
    
    .advice-box {
        margin: 30px 0;
    }
    
    .advice-step {
        display: flex;
        gap: 20px;
        margin-bottom: 25px;
        padding: 20px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    
    .advice-step:last-child {
        margin-bottom: 0;
    }
    
    .step-number {
        background: linear-gradient(135deg, #000000 0%, #ba8f47 100%);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .step-content h4 {
        margin: 0 0 10px 0;
        color: #1f2937;
    }
    
    .step-content p {
        margin: 0;
        color: #6b7280;
    }
    
    .faq-article {
        margin: 30px 0;
    }
    
    /*.faq-item {
        margin-bottom: 15px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .faq-question {
        padding: 20px;
        background: #f9fafb;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .faq-question h3 {
        margin: 0;
        font-size: 1.1rem;
        color: #1f2937;
    }
    
    .faq-toggle {
        color: #6b7280;
        transition: transform 0.3s;
    }
    
    .faq-item.open .faq-toggle {
        transform: rotate(180deg);
    }
    
    .faq-answer {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .faq-item.open .faq-answer {
        padding: 20px;
        max-height: 500px;
    }
    
    .faq-answer p {
        margin: 0;
        color: #6b7280;
        line-height: 1.6;
    }*/
    
    .article-conclusion {
        margin: 50px 0;
    }
    
    .conclusion-box {
        background: #f9fafb;
        padding: 40px;
        border-radius: 12px;
        border: 1px solid #e5e7eb;
    }
    
    .conclusion-box h2 {
        margin-top: 0;
        color: #1f2937;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .conclusion-box p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #6b7280;
    }
    
    .key-takeaways {
        background: white;
        padding: 25px;
        border-radius: 8px;
        margin: 30px 0;
    }
    
    .key-takeaways h4 {
        margin-top: 0;
        margin-bottom: 20px;
        color: #1f2937;
    }
    
    .key-takeaways ul {
        margin: 0;
        padding-left: 20px;
        color: #6b7280;
    }
    
    .key-takeaways li {
        margin-bottom: 10px;
    }
    
    .final-cta {
        text-align: center;
        padding: 30px;
        background: linear-gradient(135deg, #946d2a 0%, #a9997d61 100%);
        border-radius: 12px;
        color: white;
    }
    
    .final-cta h3 {
        color: white;
        margin: 0 0 15px 0;
        font-size: 1.8rem;
    }
    
    .final-cta p {
        margin: 0 0 25px 0;
        font-size: 1.1rem;
        opacity: 0.9;
        color: #000;
    }
    
    .final-cta-button {
        background: white;
        color: #49381c;
        border: none;
        padding: 18px 35px;
        font-size: 1.2rem;
        font-weight: 600;
        border-radius: 8px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        transition: all 0.3s ease;
        margin-bottom: 15px;
    }
    
    .final-cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    }
    
    
    .related-articles {
        margin: 60px 0 30px 0;
    }
    
    .related-articles h3 {
        margin-bottom: 25px;
        color: #1f2937;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .articles-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .article-preview {
        display: flex;
        gap: 20px;
        padding: 20px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .article-preview:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }
    
    .article-preview-icon {
        font-size: 2rem;
        color: #6f562b;
        flex-shrink: 0;
    }
    
    .article-preview-content h4 {
        margin: 0 0 10px 0;
        color: #1f2937;
        font-size: 1.1rem;
    }
    
    .article-preview-content p {
        margin: 0;
        color: #6b7280;
        font-size: 0.9rem;
    }
    
    @media (max-width: 768px) {
        .article-header h1 {
            font-size: 1.8rem;
        }
        
        .article-meta {
            flex-direction: column;
            gap: 10px;
        }
        
        .features-grid,
        .methods-grid,
        .mistakes-grid,
        .repayment-methods,
        .articles-grid {
            grid-template-columns: 1fr;
        }
        
        .advice-step {
            flex-direction: column;
            gap: 15px;
        }
        
        .conclusion-box,
        .article-cta-box,
        .final-cta {
            padding: 25px 20px;
        }
    }