* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.4;
}


.top-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0;
}

.top-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 48px;
}

.nav-tabs {
    display: flex;
    gap: 0;
}

.nav-tab {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    padding: 14px 20px;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    font-weight: 400;
}

.nav-tab.active {
    color: #0066b2;
    border-bottom-color: #0066b2;
    font-weight: 500;
}

.nav-tab:hover {
    color: #0066b2;
}

.top-nav-right {
    display: flex;
    gap: 24px;
    align-items: center;
    font-size: 13px;
}

.top-nav-right a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.top-nav-right a:hover {
    color: #0066b2;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0;
}

.main-nav {
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    padding: 16px 20px;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 60px;
}

.logo img {
    width: 250px;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background-color: #0066b2;
    border-radius: 50%;
    margin-left: 8px;
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
}

.nav-link {
    display: none;
}

.main-nav-links {
    display: flex;
    gap: 32px;
    flex: 1;
}

.product-cards-title {
    text-align: center;
    font-size: 30pt;
    margin: 20px 0;
    color: black;
}

.main-nav-link, .main-nav-linked {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.main-nav-link:hover {
    color: #15178a;
}

.hero-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #0066b2 100%);
    color: white;
    padding: 30px 0;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    display: flex;
}

.hero-content img {
    display: none;
}

.hero-title {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero-amount {
    font-size: 72px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: -45px;
}

.hero-details{
    margin: 40px 0 0 50px;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-cta {
    background-color: #3d6b4a;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.hero-cta:hover {
    background-color: #3d6b4a;
}

.login-form {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 400px;
    margin-left: 40px;
}

.login-form h3 {
    color: #333;
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 400;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #666;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 0;
}

.form-group input:focus {
    outline: none;
    border-color: #0066b2;
}

.show-password {
    color: #0066b2;
    font-size: 14px;
    cursor: pointer;
    float: right;
    margin-top: 5px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.remember-me label{
    color: black;
}

.sign-in-btn {
    width: 100%;
    background: linear-gradient(135deg, #1e3a5f 0%, #0066b2 100%);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 15px;
}

.sign-in-btn:hover {
    background-color: #004d87;
}

.login-links {
    font-size: 14px;
}

.login-links a {
    color: #0066b2;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.services-section {
    background-color: #ffffff;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.services-container {
    padding: 0 20px;
}

.services-title {
    text-align: center;
    font-size: 36px;
    color: black;
    margin-bottom: 60px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.services-overview.redesigned {
    background: #f8fafc;
    padding: 48px 0;
}
.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.service-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 20px;
    transition: box-shadow 0.2s;
}
.service-card:hover {
    box-shadow: 0 4px 24px rgba(0,102,178,0.10);
}
.service-card-icon {
    font-size: 2.2rem;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 0;
    flex-shrink: 0;
}
.service-card-content {
    flex: 1;
}
.service-card-title {
    font-size: 1.18rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #003366;
}
.service-card-description {
    font-size: 1rem;
    color: #444;
    margin: 0;
    line-height: 1.6;
}
.service-link {
    color: #0066b2;
    text-decoration: none;
    font-weight: 500;
}
.service-link:hover {
    text-decoration: underline;
}

.services-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

.carousel-nav {
    position: absolute;
    background-color: transparent;
    border: none;
    font-size: 48px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s ease;
    z-index: 10;
    padding: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-nav:hover {
    color: #0066b2;
}

.carousel-nav.prev {
    left: -80px;
    top: 120px;
}

.carousel-nav.next {
    right: -80px;
    top: 120px;
}

.services-track {
    display: flex;
    gap: 80px;
    align-items: center;
    justify-content: center;
    max-width: 800px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease;
    min-width: 120px;
}

.service-item:hover {
    transform: translateY(-2px);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.service-icon.business::before {
    content: '';
    width: 32px;
    height: 24px;
    background-color: #666;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M20 7h-9'/%3E%3Cpath d='M14 17H5a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v3'/%3E%3Cpath d='M9 9v6'/%3E%3Cpath d='M13 9v6'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M20 7h-9'/%3E%3Cpath d='M14 17H5a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v3'/%3E%3Cpath d='M9 9v6'/%3E%3Cpath d='M13 9v6'/%3E%3C/svg%3E") no-repeat center;
}

.service-icon.credit-cards::before {
    content: '';
    width: 32px;
    height: 20px;
    background-color: #666;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='1' y='4' width='22' height='16' rx='2' ry='2'/%3E%3Cline x1='1' y1='10' x2='23' y2='10'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='1' y='4' width='22' height='16' rx='2' ry='2'/%3E%3Cline x1='1' y1='10' x2='23' y2='10'/%3E%3C/svg%3E") no-repeat center;
}

.service-icon.checking::before {
    content: '';
    width: 32px;
    height: 20px;
    background-color: #666;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='1' y='3' width='15' height='13'/%3E%3Cline x1='16' y1='8' x2='20' y2='8'/%3E%3Cline x1='16' y1='12' x2='20' y2='12'/%3E%3Cline x1='1' y1='8' x2='16' y2='8'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='1' y='3' width='15' height='13'/%3E%3Cline x1='16' y1='8' x2='20' y2='8'/%3E%3Cline x1='16' y1='12' x2='20' y2='12'/%3E%3Cline x1='1' y1='8' x2='16' y2='8'/%3E%3C/svg%3E") no-repeat center;
}

.service-icon.travel::before {
    content: '';
    width: 32px;
    height: 32px;
    background-color: #666;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M17.8 19.2 16 11l3.5-3.5C21 6 21.5 4 21 3c-1-.5-3 0-4.5 1.5L13 8 4.8 6.2c-.5-.1-.9.1-1.1.5l-.3.5c-.2.5-.1 1 .3 1.3L9 12l-2 3H4l-1 1 3 2 2 3 1-1v-3l3-2 3.5 5.3c.3.4.8.5 1.3.3l.5-.2c.4-.3.6-.7.5-1.2z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M17.8 19.2 16 11l3.5-3.5C21 6 21.5 4 21 3c-1-.5-3 0-4.5 1.5L13 8 4.8 6.2c-.5-.1-.9.1-1.1.5l-.3.5c-.2.5-.1 1 .3 1.3L9 12l-2 3H4l-1 1 3 2 2 3 1-1v-3l3-2 3.5 5.3c.3.4.8.5 1.3.3l.5-.2c.4-.3.6-.7.5-1.2z'/%3E%3C/svg%3E") no-repeat center;
}

.service-icon.savings::before {
    content: '';
    width: 32px;
    height: 32px;
    background-color: #666;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M19 5c-1.5 0-2.8 1.4-3 2-3.5-1.5-11-.3-11 5 0 1.8 0 3 2 3h1c0 0 0 1 0 1h5.5c0 0 .5-.4.5-.5.8-.3 1.5-.5 2.5-.5 1.5 0 2.5.5 2.5.5v-1h1c2 0 2-1.2 2-3 0-5.5-7.5-6.5-11-5-.2-.6-1.5-2-3-2z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M19 5c-1.5 0-2.8 1.4-3 2-3.5-1.5-11-.3-11 5 0 1.8 0 3 2 3h1c0 0 0 1 0 1h5.5c0 0 .5-.4.5-.5.8-.3 1.5-.5 2.5-.5 1.5 0 2.5.5 2.5.5v-1h1c2 0 2-1.2 2-3 0-5.5-7.5-6.5-11-5-.2-.6-1.5-2-3-2z'/%3E%3C/svg%3E") no-repeat center;
}

.service-name {
    font-size: 16px;
    color: #0066b2;
    font-weight: 400;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 60px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.dot.active {
    background-color: #0066b2;
}

.dot:hover {
    background-color: #0066b2;
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.product-card-header {
    padding: 30px;
    color: white;
    position: relative;
    min-height: 120px;
    display: flex;
    align-items: center;
}

.product-card-header.blue {
    background: linear-gradient(135deg, #1e3a5f 0%, #0066b2 100%)
}

.product-card-header.gray {
    background: linear-gradient(135deg, #666 0%, #888 100%);
}

.product-card-title {
    font-size: 24px;
    font-weight: 300;
    flex: 1;
}

.product-card-body {
    padding: 30px;
}

.product-card-offer {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.product-card-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 14px;
}

.product-card-btn {
    background: linear-gradient(135deg, #1e3a5f 0%, #0066b2 100%);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.product-card-btn:hover {
    background-color: #004d87;
    transform: translateY(-1px);
}

.product-card-btn:active {
    transform: translateY(0);
}

.business-section {
    background-color: white;
    padding: 0 0 80px 0;
}

.business-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.business-offer {
    background: linear-gradient(135deg, #1e3a5f 0%, #0066b2 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
}

.business-offer-title {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
}

.business-offer-amount {
    font-size: 72px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #a4c519;
}

.business-offer-subtitle {
    font-size: 18px;
    font-weight: 300;
}

.business-content {
    flex: 1;
}

.business-content h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.business-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.business-cta {
    background-color: #3d6b4a;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.auto-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.auto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.auto-content {
    flex: 1;
}

.auto-content h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.auto-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.auto-image {
    flex: 1;
    text-align: center;
}

.auto-image img {
    max-width: 100%;
    border-radius: 8px;
    width: 300px;
}

.college-section {
    background-color: white;
    padding: 80px 0;
}

.college-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.college-offer {
    background: linear-gradient(135deg, #1e3a5f 0%, #0066b2 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
}

.college-offer-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
}

.college-offer-amount {
    font-size: 72px;
    font-weight: bold;
    color: #a4c519;
}

.college-content {
    flex: 1;
}

.college-content h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.college-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-services {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.footer-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.footer-service-category {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
}

.footer-service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #666;
}

.footer-service-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.footer-service-description {
    color: #666;
    line-height: 1.5;
    font-size: 14px;
    margin-bottom: 15px;
}

.social-section {
    background-color: #f8f9fa;
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
}

.social-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.follow-text {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666;
    transition: color 0.2s ease;
    font-size: 18px;
}

.social-link:hover {
    color: #0066b2;
}

.tagline {
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

.services-overview {
    background-color: white;
    padding: 60px 0;
}

.services-overview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-category {
    padding: 20px 0;
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #666;
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 15px;
}

.detailed-footer {
    background-color: white;
    padding: 60px 0;
    border-bottom: 1px solid #e5e5e5;
}

.detailed-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-service {
    padding: 20px 0;
}

.footer-service-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666;
}

.footer-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.footer-service-description {
    color: #666;
    line-height: 1.5;
    font-size: 13px;
    margin-bottom: 12px;
}

.legal-footer {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.legal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-text {
    color: #666;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.copyright {
    text-align: center;
    color: #666;
    font-size: 15px;
    margin-top: 20px;
}

.invest-section {
    background: #f7fafd;
    padding: 48px 0;
    margin: 40px 0 60px 0;
    border-radius: 10px;
}

.invest-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
    padding: 0 24px;
}

.invest-info {
    flex: 1 1 340px;
    min-width: 300px;
}

.invest-info img {
    display: none;
}

.invest-info h2 {
    font-size: 2.1rem;
    color: #003366;
    margin-bottom: 18px;
    font-weight: 700;
}

.invest-info p {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 18px;
    line-height: 1.6;
}

.invest-info ul {
    margin: 0 0 24px 0;
    padding-left: 20px;
    color: #0066b2;
    font-size: 1rem;
}

.invest-info ul li {
    margin-bottom: 8px;
    list-style: none;
    position: relative;
    padding-left: 0;
}

.invest-btn {
    background: #0066b2;
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 24px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0,102,178,0.08);
}

.invest-btn:hover,
.invest-btn:focus {
    background: #004a80;
}

.invest-image {
    flex: 1 1 320px;
    min-width: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.invest-image img {
    max-width: 420px;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 1024px) {
    .hero-container,
    .auto-container,
    .college-container {
        flex-direction: column;
        text-align: center;
    }

    .business-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .login-form {
        margin-left: 0;
        margin-top: 40px;
    }
    
    .carousel-nav.prev {
        left: -40px;
    }

    .carousel-nav.next {
        right: -40px;
    }
    
    .services-track {
        gap: 60px;
    }
}

@media (max-width: 900px) {
    .invest-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .invest-image img {
        max-width: 320px;
        width: 100%;
        margin-top: -50px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        gap: 20px;
        padding: 20px;
        display: flex;
    }

    .main-nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .invest-info img {
        display: block;
        width: 100%;
        margin: 20px 0;
    }

    .invest-info h2 {
        font-size: 20pt;
        text-align: center;
        padding-top: 10px;
    }

    .invest-section {
        margin: 0;
        padding: 0;
    }

    .product-cards-title {
        text-align: center;
        font-size: 18pt;
        margin: 25px 0;
    }

    .business-offer {
        width: 100%;
    }
    
    .business-offer-amount,
    .college-offer-amount {
        font-size: 48px;
    }

    .hero-amount {
        margin: 0;
        font-size: 60pt;
    }

    .hero-details{
        margin: 10px 0;
    }

    .services-title {
        font-size: 28px;
        display: none;
    }

    .carousel-nav {
        display: none;
    }

    .carousel-dots{
        display: none;
    }

    .logo-text {
        font-size: 14pt;
    }

    .login-form {
        display: none;
    }

    .top-nav-container {
        flex-direction: column;
        gap: 15px;
        height: auto;
        padding: 15px 20px;
    }

    .college-container {
        flex-direction: column;
        text-align: center;
    }

    .college-offer {
        flex: none;
        width: 100%;
        max-width: 400px;
        margin: 0;
    }

    .footer-service-warning {
        display: block;
    }

    .services-overview-container,
    .detailed-footer-container {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .services-title {
        font-size: 28px;
    }

    .services-track {
        gap: 40px;
    }

    .mobile-menu-btn {
        display: inline-flex !important;
        align-items: center;
        background: none;
        border: none;
        margin-left: 12px;
        cursor: pointer;
    }
    .main-nav-links {
        display: none !important;
    }

    .top-nav{
        display: none;
    }

    .top-nav-right {
        display: none;
    }

    .carousel-nav {
        display: none;
    }

    .college-section {
        margin: 10px;
    }

    .product-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-section {
        padding: 40px 0;
    }

    .services-carousel {
        display: none;
    }

    .logo img{
        width: 170px;
        margin-right: -45px;
    }
}

@media (max-width: 700px) {
    .services-overview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-card {
        padding: 20px 14px;
    }
}

@media (max-width: 480px) {
    .hero-container,
    .auto-container,
    .college-container {
        flex-direction: column;
        text-align: center;
        padding: 0 10px;
    }

    .hero-content,
    .auto-content,
    .business-content,
    .college-content {
        max-width: 100%;
        padding: 0;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-content img {
        display: block;
    }

    .login-form {
        width: 100%;
        min-width: 0;
        padding: 15px;
        margin-left: 0;
        margin-top: 30px;
    }

    .services-section,
    .business-section,
    .auto-section,
    .college-section,
    .footer-services,
    .services-overview,
    .detailed-footer,
    .legal-footer {
        padding: 30px 0;
    }

    .services-title,
    .business-content h2,
    .auto-content h2,
    .college-content h2 {
        font-size: 20px;
    }

    .hero-title,
    .hero-subtitle {
        font-size: 18px;
    }

    .hero-amount,
    .business-offer-amount,
    .college-offer-amount {
        font-size: 32px;
    }

    .product-card-header {
        padding: 15px;
        min-height: 80px;
    }

    .product-card-body {
        padding: 15px;
    }

    .product-card-title {
        font-size: 16px;
    }

    .services-track {
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
    }

    .service-item {
        min-width: 0;
    }

    .footer-services-container,
    .services-overview-container,
    .detailed-footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .footer-service-category,
    .footer-service {
        padding: 15px;
    }

    .footer-service-title {
        font-size: 14px;
    }

    .footer-service-description {
        font-size: 12px;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    .social-links {
        gap: 8px;
    }

    .copyright {
        font-size: 15px;
    }
}
