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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    background-color: #fff;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.logo h1 {
    color: #000;
    font-size: 1.5rem;
    font-weight: normal;
}

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

.nav-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2d7a3e;
}

.btn-login {
    background-color: #2d7a3e;
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 0.9rem;
}

.btn-login:hover {
    background-color: #236530;
}

/* Hero Sections */
.hero {
    background-color: #f5f5f5;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.home-hero {
    padding: 4rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h2 {
    font-size: 4.5rem;
    font-weight: normal;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #000;
}

.hero-content-center {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-content-center h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.hero-content-center p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.btn-get-started {
    background-color: #2d7a3e;
    color: #fff;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.btn-get-started:hover {
    background-color: #236530;
}

/* Hero Image Section */
.hero-image {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-woman-image {
    position: absolute;
    width: 350px;
    height: 400px;
    background: linear-gradient(135deg, #4a9e5e 0%, #2d7a3e 100%);
    border-radius: 10px;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
}

.hero-woman-image::before {
    content: '👤';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    opacity: 0.3;
}

.geometric-pattern {
    width: 100%;
    height: 100%;
    position: absolute;
    background:
        linear-gradient(135deg, transparent 40%, rgba(109, 191, 127, 0.5) 40%, rgba(109, 191, 127, 0.5) 50%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(45, 122, 62, 0.5) 40%, rgba(45, 122, 62, 0.5) 50%, transparent 50%);
    background-size: 150px 150px;
    background-position: 0 0, 75px 75px;
}

.geometric-pattern-hero {
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background:
        linear-gradient(135deg, transparent 40%, rgba(109, 191, 127, 0.3) 40%, rgba(109, 191, 127, 0.3) 50%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(45, 122, 62, 0.3) 40%, rgba(45, 122, 62, 0.3) 50%, transparent 50%);
    background-size: 120px 120px;
    background-position: 0 0, 60px 60px;
    z-index: 1;
}

/* Intro Text */
.intro-text {
    padding: 2rem 0;
    background-color: #fff;
}

.intro-text p {
    text-align: center;
    font-size: 1.1rem;
    color: #2d7a3e;
}

/* Promo Banner */
.promo-banner {
    background-color: #e8f5e9;
    padding: 2.5rem 0;
}

.promo-grid {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    align-items: center;
}

.promo-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4a9e5e 0%, #6fbf7f 100%);
    border-radius: 8px;
    position: relative;
}

.promo-image::before {
    content: '💰';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
}

.promo-content h3 {
    color: #2d7a3e;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.promo-content p {
    margin-bottom: 1rem;
    color: #555;
}

/* Product Cards */
.product-cards {
    padding: 3rem 0;
    background-color: #fff;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.map-bg {
    background: linear-gradient(135deg, #4a9e5e 0%, #6fbf7f 50%, #2d7a3e 100%);
    position: relative;
}

.map-bg::before {
    content: '🗺️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.6;
}

.person-tablet-bg {
    background: linear-gradient(135deg, #6fbf7f 0%, #4a9e5e 100%);
    position: relative;
}

.person-tablet-bg::before {
    content: '💻';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.6;
}

.woman-phone-bg {
    background: linear-gradient(135deg, #2d7a3e 0%, #4a9e5e 100%);
    position: relative;
}

.woman-phone-bg::before {
    content: '📱';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.6;
}

.striped-shirt-bg {
    background: linear-gradient(135deg, #4a9e5e 0%, #2d7a3e 50%, #6fbf7f 100%);
    position: relative;
}

.striped-shirt-bg::before {
    content: '💳';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.6;
}

.card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.1rem;
    color: #000;
}

.card p {
    padding: 0 1.5rem 1rem;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.link-green {
    color: #2d7a3e;
    text-decoration: none;
    font-weight: bold;
    padding: 0 1.5rem 1.5rem;
    display: inline-block;
}

.link-green:hover {
    text-decoration: underline;
}

/* Featured Banner */
.featured-banner {
    background-color: #f5f5f5;
    padding: 3rem 0;
}

.banner-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.banner-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #4a9e5e 0%, #2d7a3e 100%);
    border-radius: 10px;
    position: relative;
}

.banner-image::before {
    content: '🏦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    opacity: 0.3;
}

.banner-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #000;
}

/* Credit Cards Section */
.credit-cards-section {
    padding: 3rem 0;
    background-color: #fff;
}

.credit-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.credit-card-item {
    text-align: center;
}

.credit-card-visual {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.credit-card-visual.standard {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}

.credit-card-visual.rewards {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.credit-card-visual.rewards-plus {
    background: linear-gradient(135deg, #6a0572 0%, #ab47bc 100%);
}

.credit-card-visual.premier-rewards {
    background: linear-gradient(135deg, #c79100 0%, #8b6914 100%);
}

.card-logo {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: left;
}

.card-number {
    font-size: 1.3rem;
    letter-spacing: 3px;
    text-align: center;
}

.card-name {
    font-size: 0.9rem;
    text-align: left;
}

.credit-card-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #000;
}

.credit-card-item p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Info Section */
.info-section {
    background-color: #f5f5f5;
    padding: 3rem 0;
}

.info-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #000;
}

.info-content > p {
    margin-bottom: 2rem;
    color: #555;
}

.info-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
}

.info-number {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 2px solid #2d7a3e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #2d7a3e;
    flex-shrink: 0;
}

.info-item p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.info-item strong {
    color: #000;
}

/* Believe Section */
.believe-section {
    background-color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.believe-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #000;
}

.believe-content p {
    font-size: 1rem;
    color: #555;
}

/* Footer */
footer {
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #2d7a3e;
}

.footer-copyright {
    color: #666;
    font-size: 0.9rem;
}

.footer-copyright p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .credit-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content h2 {
        font-size: 3.5rem;
    }

    .hero-image {
        height: 300px;
    }

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

    .info-types {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content-center h2 {
        font-size: 2rem;
    }

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

    .credit-cards-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

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