/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0066CC;
    --secondary-blue: #4A90E2;
    --light-blue: #E6F2FF;
    --dark-blue: #003D7A;
    --text-dark: #333333;
    --text-gray: #666666;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
    --success-green: #28A745;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    color: var(--primary-blue);
    font-size: 28px;
    font-weight: 700;
}

.nav-menu {
    flex: 1;
    margin: 0 40px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: var(--primary-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.login-btn {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: var(--dark-blue);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    padding: 60px 0;
}

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

.hero-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.feature {
    font-size: 18px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}


.cta-button {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--dark-blue);
}

/* Steps Section */
.how-to-get {
    padding: 80px 0;
    background-color: var(--white);
}

.how-to-get h2,
.advantages h2,
.how-to-repay h2,
.faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.advantage {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.advantage h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.advantage p {
    color: var(--text-gray);
}

/* How to Repay Section */
.how-to-repay {
    padding: 80px 0;
    background-color: var(--white);
}

.repay-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.method {
    text-align: center;
}

.method-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.method h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.method p {
    color: var(--text-gray);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Disclosure, About and Privacy Sections */
.disclosure-section,
.about-section,
.privacy-section {
    padding: 80px 0;
    background-color: var(--white);
    min-height: 60vh;
}

.disclosure-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.disclosure-category h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.document-list {
    list-style: none;
}

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

.document-list a {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    display: block;
    transition: color 0.3s;
}

.document-list a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

.company-info-disclosure {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.company-info-disclosure h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.company-info-disclosure p {
    font-size: 16px;
    color: var(--text-gray);
}

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

.about-hero {
    text-align: center;
    margin-bottom: 50px;
}

.about-tagline {
    font-size: 32px;
    font-weight: 300;
    color: var(--primary-blue);
    font-style: italic;
}

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

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
}

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

.about-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.about-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.about-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.services-section {
    margin: 60px 0;
}

.services-section h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.service-item {
    padding: 30px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: border-color 0.3s;
}

.service-item:hover {
    border-color: var(--primary-blue);
}

.service-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.service-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.company-values {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    margin: 60px 0;
}

.company-values h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.company-values ul {
    list-style: none;
}

.company-values li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    line-height: 1.8;
    color: var(--text-gray);
}

.company-values li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: bold;
}

.contact-cta {
    text-align: center;
    padding: 60px 0;
}

.contact-cta h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-gray);
}

.contact-info-about {
    background-color: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 10px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
}

.contact-info-about p {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Privacy Documents */
.privacy-documents {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 50px auto;
}

.privacy-document-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.document-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.privacy-document-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.privacy-document-card p {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.document-link {
    display: inline-block;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.document-link:hover {
    background-color: var(--dark-blue);
}

.logo {
    cursor: pointer;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer h3,
.footer h4 {
    margin-bottom: 20px;
}

.footer p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer a {
    color: var(--white);
    text-decoration: none;
}

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

.social-links {
    display: flex;
    gap: 15px;
    font-size: 24px;
}

.social-links a {
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.7;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    
    .steps,
    .advantages-grid,
    .repay-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .disclosure-categories {
        grid-template-columns: 1fr;
    }
    
    .privacy-documents {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-tagline {
        font-size: 24px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: relative;
    }
    
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: -20px;
        right: -20px;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .header-actions {
        display: none;
    }
    
    .hero-text h2 {
        font-size: 36px;
    }
    
    
    .steps,
    .advantages-grid,
    .repay-methods {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 28px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .how-to-get h2,
    .advantages h2,
    .how-to-repay h2,
    .faq h2 {
        font-size: 28px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

/* Company Information Section */
.company-info-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.company-full-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.company-full-info h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.4;
    font-weight: 600;
}

.info-block {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.info-block p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.info-block p:last-child {
    margin-bottom: 0;
}

.info-block strong {
    color: var(--primary-color);
    font-weight: 600;
}

.info-block a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .company-info-section {
        padding: 40px 0;
    }
    
    .company-full-info h3 {
        font-size: 18px;
    }
    
    .info-block {
        padding: 25px;
    }
    
    .info-block p {
        font-size: 15px;
    }
}