* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #1A242C;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: transparent;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(94, 114, 200, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    z-index: 1001;
}

.logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.navbar.scrolled .logo {
    color: #1A242C;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    transition: all 0.3s ease;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-menu a {
    color: #1A242C;
}

.nav-menu a:hover {
    color: #5E72C8;
}

.download-btn {
    background: white;
    color: #5E72C8;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(94, 114, 200, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar.scrolled .mobile-menu-toggle span {
    background: #1A242C;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.desktop-only {
    display: inline-block;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('/images/hero-img.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 4rem;
    position: relative;
}

.hero-content {
    max-width: 700px;
    color: white;
    text-align: right;
    margin-right: 4rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.hero-dots {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:first-child {
    background: white;
}

.dot:nth-child(2) {
    background: #5E72C8;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(90deg, #2E47B5, #AAB6E6);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: linear-gradient(-90deg, #2E47B5, #AAB6E6);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(94, 114, 200, 0.4);
}

.btn-outline {
    background: transparent;
    color: #5E72C8;
    padding: 1rem 2rem;
    border: 2px solid #5E72C8;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline:hover {
    background: linear-gradient(90deg, #2E47B5, #AAB6E6);
    color: white;
    border-color: #5E72C8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(94, 114, 200, 0.3);
}

/* Hero specific button styles */
.hero .btn-outline {
    color: white;
    border-color: white;
}

.hero .btn-outline:hover {
    background: white;
    color: #5E72C8;
    border-color: white;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.container-full {
    max-width: 100%;
    margin: 0 auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header::before {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #2E47B5, #AAB6E6);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A242C;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #707070;
    max-width: 600px;
    margin: 0 auto;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 2rem;
    background: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: #F5F5F5;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(94, 114, 200, 0.2);
    border-color: #5E72C8;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #5E72C8;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: linear-gradient(135deg, #2E47B5, #AAB6E6);
    border-color: #5E72C8;
    color: white;
    box-shadow: 0px 10px 30px 0 rgba(94, 114, 200, 0.3);
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A242C;
    margin-bottom: 1rem;
}

.step-card p {
    color: #707070;
    font-size: 1rem;
}

.section-description {
    margin-top: 3rem;
    text-align: center;
}

.section-description p {
    font-size: 1.1rem;
    color: #707070;
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 0;
    background: white;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 500px;
}

.about-text {
    padding: 5rem 2rem 5rem 4rem;
    background: white;
    z-index: 2;
    position: relative;
    margin: 2rem 0 2rem 6rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A242C;
    margin-bottom: 1rem;
}

.about-text p {
    color: #707070;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.about-image {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
                url('/images/about-img.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
    margin-left: -4rem;
}

.about-image::before {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(1.5);
}

.image-placeholder {
    display: none;
}

.play-button {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.play-button i {
    background: #7B9AE6;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FICO Section */
.fico-section {
    padding: 100px 0;
    background: #F5F5F5;
    position: relative;
}

.fico-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 500px;
}

.fico-image {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
                url('/images/fico-img.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    margin-right: -4rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fico-text {
    padding: 5rem 4rem 5rem 2rem;
    background: white;
    z-index: 2;
    position: relative;
    margin: 2rem 0;
    border-radius: 0;
    box-shadow: 10px 0 30px rgba(0,0,0,0.1);
}

.fico-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1A242C;
    margin: 2rem 0 1rem;
}

.fico-text p {
    color: #707070;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.fico-benefits {
    list-style: none;
    margin: 2rem 0;
}

.fico-benefits li {
    padding: 0.5rem 0;
    color: #707070;
    position: relative;
    padding-left: 2rem;
}

.fico-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7B9AE6;
    font-weight: bold;
}

.disclaimer {
    background: linear-gradient(135deg, #E9E9E9, #F5F5F5);
    border: none;
    border-left: 4px solid #5E72C8;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(94, 114, 200, 0.15);
    position: relative;
    overflow: hidden;
}

.disclaimer::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(94, 114, 200, 0.1));
    pointer-events: none;
}

.disclaimer p {
    color: #1A242C;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
    line-height: 1.6;
}

.disclaimer i {
    color: #5E72C8;
    margin-right: 0.5rem;
}

/* Eligibility Section */
.eligibility {
    padding: 5rem 2rem;
    background: white;
}

.eligibility-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.eligibility-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1A242C;
    margin-bottom: 2rem;
}

.requirements {
    list-style: none;
    margin-bottom: 2rem;
}

.requirements li {
    padding: 1rem 0;
    border-bottom: 1px solid #E9E9E9;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #707070;
}

.requirements li i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2E47B5, #AAB6E6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.bad-credit-info {
    background: linear-gradient(135deg, #E9E9E9, #F5F5F5);
    border: none;
    border-left: 4px solid #7B9AE6;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(123, 154, 230, 0.15);
    position: relative;
    overflow: hidden;
}

.bad-credit-info::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(123, 154, 230, 0.1));
    pointer-events: none;
}

.bad-credit-info p {
    color: #1A242C;
    margin: 0;
    font-weight: 500;
    line-height: 1.7;
    font-size: 1rem;
}

.eligibility-image {
    background: #F5F5F5;
    border-radius: 20px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.eligibility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Screenshots Section */
.screenshots {
    padding: 5rem 2rem;
    background: #F5F5F5;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.3s ease;
    gap: 2rem;
}

.screenshot-slide {
    min-width: 300px;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.phone-mockup {
    width: 200px;
    height: 400px;
    background: #1A242C;
    border-radius: 25px;
    margin: 0 auto 1rem;
    padding: 1rem;
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2E47B5, #AAB6E6);
    border-radius: 15px;
    padding: 1rem;
    color: white;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.app-content {
    height: calc(100% - 3rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    font-size: 1.5rem;
}

.feature-item span {
    font-size: 0.8rem;
    font-weight: 600;
}

.offer-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.lender-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.offer-amount {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.offer-rate {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.accept-btn {
    background: #7B9AE6;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.transfer-success {
    text-align: center;
}

.transfer-success i {
    font-size: 3rem;
    color: #7B9AE6;
    margin-bottom: 1rem;
}

.transfer-success h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.transfer-success p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.bank-info {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.screenshot-slide h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A242C;
    margin-bottom: 0.5rem;
}

.screenshot-slide p {
    color: #707070;
    font-size: 1rem;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D9D9D9;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-dot.active {
    background: #5E72C8;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 2rem;
    background: #F5F5F5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #E9E9E9;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.7;
}

.testimonial-card.active,
.testimonial-card:hover {
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(94, 114, 200, 0.15);
    border-color: #5E72C8;
}

.quote-icon {
    color: #5E72C8;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.testimonial-card.active .quote-icon,
.testimonial-card:hover .quote-icon {
    opacity: 1;
}

.testimonial-text {
    font-style: italic;
    color: #707070;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: #1A242C;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #707070;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: 5rem 2rem;
    background: #F5F5F5;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.faq-text {
    display: flex;
    flex-direction: column;
}

.faq-text .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.faq-image {
    position: relative;
    background: #F5F5F5;
    border-radius: 20px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 2rem;
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.triangle-1 {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid #5E72C8;
    transform: rotate(45deg);
    animation: floatTriangle1 4s ease-in-out infinite;
}

.triangle-2 {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 18px solid #5E72C8;
    transform: rotate(-30deg);
    animation: floatTriangle2 3s ease-in-out infinite reverse;
}

.circle-1 {
    position: absolute;
    top: 60px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #5E72C8;
    animation: floatCircle1 5s ease-in-out infinite;
}

.circle-2 {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #5E72C8;
    animation: floatCircle2 3.5s ease-in-out infinite;
}

@keyframes floatTriangle1 {
    0%, 100% { transform: translateY(0px) rotate(45deg); }
    50% { transform: translateY(-15px) rotate(65deg); }
}

@keyframes floatTriangle2 {
    0%, 100% { transform: translateX(0px) rotate(-30deg); }
    50% { transform: translateX(15px) rotate(-10deg); }
}

@keyframes floatCircle1 {
    0%, 100% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(10px, -10px) scale(1.1); }
    66% { transform: translate(-5px, 5px) scale(0.9); }
}

@keyframes floatCircle2 {
    0%, 100% { transform: translate(0px, 0px) scale(1); }
    50% { transform: translate(-8px, -12px) scale(1.2); }
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #E9E9E9;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: #5E72C8;
}

.accordion-header {
    padding: 1.5rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1A242C;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #F5F5F5;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-icon.active {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #F5F5F5;
}

.accordion-content.active {
    max-height: 200px;
}

.accordion-body {
    padding: 1.5rem;
    color: #707070;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-image {
    background: #F5F5F5;
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.contact-image i {
    color: #5E72C8;
    font-size: 5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-container {
    width: 100%;
}

.contact-form-inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-inputs input,
.contact-form-inputs textarea {
    padding: 1rem;
    border: 1px solid #E9E9E9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form-inputs input:focus,
.contact-form-inputs textarea:focus {
    outline: none;
    border-color: #5E72C8;
    box-shadow: 0 0 0 3px rgba(94, 114, 200, 0.1);
}

.success-message {
    text-align: center;
    padding: 2rem;
    background: #F0FDF4;
    border-radius: 12px;
    border: 1px solid #BBF7D0;
}

.success-icon {
    font-size: 3rem;
    color: #7B9AE6;
    margin-bottom: 1rem;
}

.success-message h3 {
    color: #1A242C;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: #707070;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2E47B5, #AAB6E6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    color: #1A242C;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: #707070;
}

/* Footer */
.footer {
    background: #1A242C;
    color: white;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #A4A4A4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #5E72C8;
}

.footer-bottom {
    border-top: 1px solid #707070;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo .logo {
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo .logo img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.footer-logo p {
    color: #A4A4A4;
}

.app-buttons {
    display: flex;
    gap: 1rem;
}

.app-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: white;
    border: 1px solid #707070;
}

.app-btn:hover {
    background: #707070;
    transform: translateY(-2px);
}

.app-btn i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-content {
        max-width: 600px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: rgba(26, 36, 44, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        color: white;
        font-size: 1.2rem;
        padding: 1rem 2rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(94, 114, 200, 0.2);
        color: #AAB6E6;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .desktop-only {
        display: none;
    }
    
    /* Hero */
    .hero {
        padding: 0 1rem;
        text-align: center;
        justify-content: center;
    }
    
    .hero-content {
        margin-right: 0;
        margin: 0;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-dots {
        right: 1rem;
        top: 40%;
    }
    
    /* Sections */
    .about-content,
    .fico-content,
    .eligibility-content,
    .faq-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .fico-text {
        padding: 3rem 2rem;
        margin: 0;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .about-text {
        padding: 3rem 2rem;
        margin: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .about-image,
    .fico-image {
        margin: 0;
        border-radius: 20px;
        height: 250px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Forms */
    .contact-form-inputs {
        gap: 0.75rem;
    }
    
    .contact-form-inputs input,
    .contact-form-inputs textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .app-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* General */
    .container {
        padding: 0 1rem;
    }
    
    /* Hero */
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-outline {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Steps */
    .step-card {
        padding: 1.5rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Sections */
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-text h2,
    .fico-text h3 {
        font-size: 1.8rem;
    }
    
    .about-text,
    .fico-text {
        padding: 2rem 1.5rem;
    }
    
    .faq-image,
    .contact-image {
        height: 200px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .app-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .app-btn {
        justify-content: center;
    }
}