/* style.css */
/* Base Styles */
:root {
    --primary-color: #4226C6;
    --primary-color-light: #486cd7;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-color: #333;
    --text-color-alt: #555;
    --light-gray: #f5f7fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --text-highlight: #4226C6;
}
.dark {
    --secondary-color: #ffffff;
    --text-color: #c3c3c3;
    --text-color-alt: #f2f2f2;
    --text-highlight: #fffb00;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header & Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 5%;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links li:last-child {
    margin-left: 1.5rem;
}

.nav-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

/* Navbar Download Button */
.nav-links .btn-download {
    margin-left: 1.5rem;
    padding: 0.5rem 1.5rem !important;
    font-size: 0.95rem;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
    border: 2px solid #e74c3c !important;
    color: white !important;
    border-radius: 30px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3) !important;
}

.nav-links .btn-download:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 50% 50%;
}

.nav-links .btn-download:hover {
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4) !important;
}

.nav-links .btn-download:hover:before {
    height: 200%;
}

.nav-links .btn-download:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(231, 76, 60, 0.3) !important;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Buttons */
.btn-primary i, .btn-secondary i, .btn-download i, .btn-outline i {
    margin-right: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary .fa-phone-alt {
    transform: scaleX(-1);
}

.btn-primary, .btn-secondary, .btn-download, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

/* Primary Button */
.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(74, 111, 220, 0.25);
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--white);
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 8px 25px rgba(74, 111, 220, 0.35);
}

.btn-primary:hover:before {
    width: 100%;
}

.btn-primary:active {
    transform: translateY(1px) translateZ(0);
    box-shadow: 0 2px 10px rgba(74, 111, 220, 0.2);
}

/* Secondary Button */
/* Hero Section Buttons */
.hero .btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.hero .btn-secondary {
    background: #2c3e50;
    color: white;
    border: 2px solid #2c3e50;
    margin-left: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.25);
}

.hero .btn-secondary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #1a1a1a;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 50% 50%;
}

.hero .btn-secondary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.35);
}

.hero .btn-secondary:hover:before {
    height: 200%;
}

.hero .btn-secondary:active {
    transform: translateY(1px);
}

.btn-secondary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--primary-color);
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 50% 50%;
}

.btn-secondary:hover {
    color: var(--white);
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 5px 15px rgba(74, 111, 220, 0.2);
}

.btn-secondary:hover:before {
    height: 200%;
}

.btn-secondary:active {
    transform: translateY(1px) translateZ(0);
}

/* Download Button */
.btn-download {
    background: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.25);
}

.btn-download:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, padding-bottom 0.6s ease;
    z-index: -1;
}

.btn-download:hover {
    color: var(--white);
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.35);
}

.btn-download:hover:before {
    width: 250px;
    padding-bottom: 250px;
    opacity: 0;
}

.btn-download:active {
    transform: translateY(1px) translateZ(0);
    box-shadow: 0 2px 10px rgba(231, 76, 60, 0.2);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--primary-color);
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 50% 50%;
}

.btn-outline:hover {
    color: var(--white);
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 5px 15px rgba(74, 111, 220, 0.2);
}

.btn-outline:hover:before {
    height: 200%;
}

.btn-outline:active {
    transform: translateY(1px) translateZ(0);
}

/* Button with Icon */
.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-icon i {
    transition: transform 0.3s ease;
}

.btn-icon:hover i {
    transform: translateX(3px);
}

/* Hero Section */
.hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    background-image: url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
}

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

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color-alt);
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--white);
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

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

.feature-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card .icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* App Showcase */
.app-showcase {
    padding: 5rem 0;
    background: linear-gradient(135deg, #4a6fdc 0%, #3a56b4 100%);
    color: var(--white);
}

.app-showcase .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.app-content {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

.app-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.app-image {
    flex: 1;
    min-height: 400px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-image img {
    width: 100%;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.app-btn {
    display: flex;
    align-items: center;
    background: #000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: var(--transition);
}

.app-btn i {
    font-size: 1.8rem;
    margin-right: 0.8rem;
}

.app-btn div {
    text-align: left;
    line-height: 1.2;
}

.app-btn span {
    font-size: 0.7rem;
    display: block;
}

.app-btn strong {
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.testimonials h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-slider {
    padding: 2rem 0 4rem;
    position: relative;
}

.swiper-slide {
    height: auto !important;
    display: flex !important;
    align-items: center !important;
}

.testimonial {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.swiper-slide-active .testimonial {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.quote {
    position: relative;
    padding: 0 0 0 2.5rem;
    margin-bottom: 1.8rem;
    flex-grow: 1;
}

.quote i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.7;
}

.quote p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color-alt);
    margin: 0;
    font-style: italic;
}

.author {
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.author h4 {
    margin: 0 0 0.3rem 0;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.author span {
    color: #777;
    font-size: 0.9rem;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: white;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.testimonial-slider:hover .swiper-button-next,
.testimonial-slider:hover .swiper-button-prev {
    opacity: 1;
    visibility: visible;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 22px !important;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 10px !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    margin: 0 5px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 1023px) {
    /* .swiper-slide {
        padding: 10px;
    } */
    
    .testimonial {
        padding: 2rem 1.5rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

.quote i {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.author h4 {
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.author span {
    color: #777;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color-light);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 1rem;
    color: var(--primary-color-light);
    margin-top: 0.3rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    color: var(--white);
    margin: 0 0.3rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color-light);
    transform: translateY(-3px);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 5px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown-content a {
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    display: block;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

/* Mobile Menu */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* ===== Business Loan Page ===== */
.business-hero {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.business-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.business-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Loan Types Section */
.loan-types {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.loan-types h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1a237e;
    font-size: 2.2rem;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.type-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.type-icon {
    width: 70px;
    height: 70px;
    background: #e8eaf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #1a237e;
    font-size: 1.8rem;
}

.type-card h3 {
    color: #1a237e;
    margin-bottom: 15px;
    font-size: 1.5rem;
    text-align: center;
}

.type-card p {
    color: var(--text-color-alt);
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
}

.type-card ul {
    text-align: left;
    padding-left: 20px;
    margin: 20px 0 0;
}

.type-card ul li {
    margin-bottom: 8px;
    color: var(--text-color-alt);
    position: relative;
    padding-left: 15px;
}

.type-card ul li:before {
    content: '•';
    color: #1a237e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Features & Benefits */
.features-benefits {
    padding: 80px 0;
    background: #fff;
}

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

.section-header h2 {
    color: #1a237e;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #1a237e;
    color: #fff;
    transform: translateY(-5px);
}

.feature-item:hover h3,
.feature-item:hover p {
    color: #fff;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #e8eaf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #1a237e;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: #fff;
    color: #1a237e;
}

.feature-item h3 {
    color: #1a237e;
    margin-bottom: 15px;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Eligibility Section */
.eligibility-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.eligibility-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
    padding: 0 20px;
}

.eligibility-content {
    flex: 1;
}

.eligibility-content h2 {
    color: #1a237e;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.eligibility-content > p {
    color: var(--text-color-alt);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.eligibility-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.eligibility-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.eligibility-item i {
    color: #4caf50;
    font-size: 1.5rem;
    margin-top: 3px;
}

.eligibility-item h4 {
    color: #1a237e;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.eligibility-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.eligibility-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.eligibility-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.eligibility-image:hover img {
    transform: scale(1.05);
}

/* Documents Section */
.documents-section {
    padding: 80px 0;
    background: #fff;
}

.documents-section h2 {
    text-align: center;
    color: #1a237e;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.document-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

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

.document-icon {
    width: 60px;
    height: 60px;
    background: #e8eaf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #1a237e;
    font-size: 1.5rem;
}

.document-card h3 {
    color: #1a237e;
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-align: center;
}

.document-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.document-card ul li {
    padding: 8px 0;
    color: var(--text-color-alt);
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

.document-card ul li:before {
    content: '✓';
    color: #4caf50;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    color: #1a237e;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

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

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px 25px;
    background: #fff;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #f9f9f9;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.show {
    max-height: 500px;
    padding: 20px 25px;
}

.faq-answer p {
    color: var(--text-color-alt);
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ===== About Page Styles ===== */
.page-hero {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: #fff;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-section {
    padding: 80px 0;
    background: #fff;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    color: #1a237e;
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-text h3 {
    color: #1a237e;
    font-size: 1.5rem;
    margin: 30px 0 15px;
    position: relative;
    padding-left: 20px;
}

.about-text h3:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 25px;
    background: #4caf50;
    border-radius: 3px;
}

.about-text p {
    color: var(--text-color-alt);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-image:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    z-index: 1;
    pointer-events: none;
    transition: all 0.3s ease;
}

.about-image:hover:before {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-color: #4caf50;
}

.values-section {
    margin: 80px 0;
}

.values-section h2 {
    text-align: center;
    color: #1a237e;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

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

.value-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.value-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #1a237e;
    transition: all 0.3s ease;
    z-index: -1;
}

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

.value-card:hover:before {
    height: 100%;
    opacity: 0.05;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #e8eaf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #1a237e;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: #1a237e;
    color: #fff;
    transform: rotateY(180deg);
}

.value-card h3 {
    color: #1a237e;
    margin-bottom: 15px;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.value-card:hover h3,
.value-card:hover p {
    color: #1a237e;
}

.team-section {
    margin: 80px 0 0;
}

.team-section h2 {
    text-align: center;
    color: #1a237e;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

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

.team-member {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.member-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover .member-image {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member h3 {
    color: #1a237e;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.team-member p {
    color: #4caf50;
    font-weight: 500;
    margin: 0;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-section .btn-primary {
    background: #fff;
    color: #1a237e;
    padding: 12px 35px;
    font-size: 1.1rem;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
    background: transparent;
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .cta-buttons {
        justify-content: center;
    }

    .app-showcase .container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .app-content {
        padding-right: 0;
        margin-top: 3rem;
    }

    .app-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
        display: block;
    }

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

/* Page Hero Styles */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #4a6fdc 0%, #3a56b4 100%);
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Savings Page Styles */
.savings-plans {
    padding: 5rem 0;
    background: var(--light-gray);
}

.savings-plans h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.plan-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

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

.plan-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent-color);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    width: 150px;
    text-align: center;
}

.plan-header {
    padding: 2rem;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.plan-header h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.interest-rate {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.plan-features {
    padding: 1.5rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    padding: 0.7rem 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: #4caf50;
    margin-right: 10px;
    font-size: 0.9rem;
}

.plan-cta {
    padding: 0 1.5rem 2rem;
    text-align: center;
}

.btn-outline {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* Interest Calculator */
.interest-calculator {
    padding: 5rem 0;
    background: var(--white);
}

.calculator-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.calculator-form {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: white;
}

.calculator-form h2 {
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group input[type="range"] {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    background: #e0e0e0;
    border-radius: 5px;
    outline: none;
    margin: 1rem 0;
}

.form-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.form-group input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.range-value {
    display: flex;
    justify-content: space-between;
    color: #777;
    font-size: 0.9rem;
}

.amount-display, .tenure-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin: 1rem 0;
}

.tenure-display {
    font-size: 1.2rem;
}

.calculation-result {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

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

.result-item.total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.calculator-info {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: var(--primary-color);
    color: white;
}

.calculator-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.calculator-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.calculator-info li {
    margin-bottom: 1rem;
    padding-left: 1.8rem;
    position: relative;
}

.calculator-info li i {
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: #fff;
}

.info-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    line-height: 1.6;
    display: flex;
    gap: 1rem;
}

.info-box i {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 0.2rem;
}

/* Account Opening Steps */
.account-opening {
    padding: 5rem 0;
    background: var(--light-gray);
    text-align: center;
}

.account-opening h2 {
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

h2 + .steps-container {
    margin-top: 1.5rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    position: relative;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.step-number::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(74, 111, 220, 0.2);
    border-radius: 50%;
    z-index: -1;
}

.step h3 {
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.step p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info, .contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-info h2, .contact-form-container h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-info p {
    color: var(--text-color-alt);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.info-item {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

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

.info-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.info-content p {
    margin: 0;
    color: var(--text-color-alt);
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-media h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 111, 220, 0.2);
}

.required {
    color: #e74c3c;
    margin-left: 3px;
}

/* Map Section */
.map-section {
    padding: 0 0 5rem;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 450px;
}

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

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.2rem 1.5rem;
    background: white;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    transition: var(--transition);
}

.faq-question.active {
    background: var(--primary-color);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: white;
    transition: max-height 0.3s ease-out;
    border-left: 3px solid var(--primary-color);
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    line-height: 1.7;
}

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

.faq-answer a:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg, #4a6fdc 0%, #3a56b4 100%);
    color: white;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.cta-buttons .btn-primary:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Policy Pages */
.policy-content, .terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
}

.policy-intro, .terms-intro {
    margin-bottom: 3rem;
    line-height: 1.8;
}

.policy-section, .terms-section {
    margin-bottom: 3rem;
}

.policy-section h2, .terms-section h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

#apply-now {
    background: var(--primary-color-light);
    color: white;
    padding: 2rem;
    
}

.policy-section h2::after, .terms-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.policy-section h3, .terms-section h3 {
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
}

.policy-section p, .terms-section p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #444;
}

.policy-section ul, .terms-section ul {
    margin: 1rem 0 1.5rem 2rem;
    padding: 0;
}

.policy-section li, .terms-section li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.policy-section a, .terms-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.policy-section a:hover, .terms-section a:hover {
    text-decoration: underline;
}

.policy-update, .terms-acknowledgment {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 3rem;
    border-left: 4px solid var(--primary-color);
}

.policy-update p, .terms-acknowledgment p {
    margin: 0;
    font-style: italic;
    color: var(--text-color-alt);
}

.text-highlight {
    color: var(--text-highlight);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .nav-download-btn {
        margin-top: 150px !important;
    }
    .about-content {
        flex-direction: column;
    }
    .calculator-container, .contact-container {
        flex-direction: column;
    }
    
    .calculator-form, .calculator-info, 
    .contact-info, .contact-form-container {
        width: 100%;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .policy-section h2, .terms-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3, .terms-section h3 {
        font-size: 1.2rem;
    }
    
    .policy-section, .terms-section {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn-secondary {
        margin-left: 0;
    }
    
    .policy-section ul, .terms-section ul {
        margin-left: 1.2rem;
    }
}