/* General Body Styles */
body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header .logo img {
    height: 50px;
    max-width: 200px;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
}

.portal-login-btn {
    background-color: #004a8c;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.portal-login-btn:hover {
    background-color: #003d73;
}


/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e8f4fd 0%, #b8d8f0 100%);
    color: #004a8c;
    text-align: left;
    padding: 100px 50px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.hero h1 {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.8em;
    font-weight: 700;
    max-width: 500px;
}

/* Intro Section */
.intro {
    text-align: center;
    padding: 80px 20px;
}

.intro h2 {
    color: #004a8c;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.intro p {
    max-width: 800px;
    margin: 0 auto 20px auto;
    font-size: 1.1em;
}


/* Benefits Section */
.benefits {
    padding: 80px 20px;
    background-color: #f7f7f7;
}

.benefits h2 {
    text-align: center;
    color: #004a8c;
    font-size: 2.5em;
    margin-bottom: 40px;
}

.benefits ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1em;
}

.benefits li {
    padding-left: 1.5em;
    text-indent: -1.5em;
    margin-bottom: 15px;
}

.benefits li::before {
    content: "•";
    color: #004a8c;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}


/* Solutions Section */
.solutions {
    padding: 80px 20px;
    background-color: #4a7d4a;
    color: white;
}

.solutions h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
}

.solution-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.solution-cards .card {
    background-color: white;
    color: #333;
    padding: 40px;
    width: 300px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.solution-cards h3 {
    color: #004a8c;
}

.solutions > p {
    max-width: 800px;
    margin: 40px auto 0 auto;
    text-align: center;
    font-size: 1.1em;
}


/* Value Section */
.value {
    padding: 80px 20px;
    background-color: #f7f7f7;
}

.value h2 {
    text-align: center;
    color: #004a8c;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.value p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1em;
}


/* Cash Flow Section */
.cash-flow {
    padding: 80px 20px;
    background: linear-gradient(to right, #004a8c, #007bff);
    color: white;
    text-align: center;
}

.cash-flow h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
}

.testimonials h2 {
    text-align: center;
    color: #004a8c;
    font-size: 2.5em;
    margin-bottom: 40px;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.testimonial-cards .card {
    background-color: #f9f9f9;
    padding: 30px;
    width: 320px;
    border-left: 5px solid #004a8c;
}

.testimonial-cards p:first-of-type {
    font-style: italic;
}

/* Footer */
footer {
    background-color: #343a40;
    color: white;
    padding: 60px 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer h3 {
    font-size: 1.5em;
    color: #a9d4ff;
}

footer a {
    color: #a9d4ff;
    text-decoration: none;
}

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

.contact, .quick-links, .copyright {
    margin: 20px;
}

.copyright {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #495057;
    padding-top: 20px;
}

@media (max-width: 768px) {
    header {
        padding: 20px;
    }
    .hero {
        padding: 80px 20px;
    }
    .hero h1 {
        font-size: 2.5em;
    }
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}