:root {
    --primary-color: #002f6c;
    --accent-color: #007baf;
    --light-bg: #f7fafc;
    --soft-bg: #f0f8ff;
    --text-color: #2a2a2a;
    --max-width: 1100px;
    --font-stack: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-stack);
    background-color: white;
    color: var(--text-color);
    line-height: 1.7;
}

header {
    background: white;
    border-bottom: 1px solid #ddd;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap; /* Prevent logo and nav from wrapping */
}

header h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
    white-space: nowrap; /* Keep logo on one line */
}

nav a {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    font-size: 1.2rem;
}

nav a:hover {
    color: var(--accent-color);
}

.hero {
    background: linear-gradient(135deg, #eaf6ff, #ffffff);
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: var(--max-width);
    width: 100%;
    padding: 60px 20px;
    flex-wrap: nowrap;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.hero-text h2 .highlight {
    color: var(--accent-color);
    /*background-color: #e6f5ff;*/
    /*padding: 2px 6px;*/
    /*border-radius: 4px;*/
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

section {
    padding: 60px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

section:nth-of-type(even) {
    background-color: var(--soft-bg);
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-left: 14px;
}

h2::before {
    /*content: '';*/
    position: absolute;
    width: 6px;
    height: 24px;
    background: var(--accent-color);
    left: 0;
    top: 4px;
    border-radius: 3px;
}

.two-column {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service {
    flex: 1 1 30%;
    background: #f9f9f9;
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.service h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.cta {
    background: linear-gradient(135deg, #005ea8, #003b6f);
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-top: 40px;
    border-radius: 4px;
}

.cta h2 {
    color: white;
    margin-bottom: 15px;
}

.cta a {
    display: inline-block;
    margin-top: 15px;
    background: white;
    color: var(--primary-color);
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.cta a:hover {
    background: var(--accent-color);
    color: white;
    border-color: white;
}

.button-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.button-link:hover {
    background-color: white;
    color: var(--primary-color);
    border-color: var(--accent-color);
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
        text-align: center;
    }

    .two-column,
    .services {
        flex-direction: column;
    }

    .service {
        flex: 1 1 100%;
    }

    .hero h2 {
        font-size: 2.2rem;
    }
}


.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    padding: 40px 20px;
    background-color: #002a5c;
    color: white;
    text-align: left;
}

.footer-col {
    flex: 1 1 200px;
    max-width: 250px;
}

.footer-col h4 {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #fff;
}

.footer-col a {
    color: #aad4f5;
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding: 15px 20px;
    background-color: #001f47;
    color: white;
    font-size: 0.9rem;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}


.logo-link {
    text-decoration: none;
    color: inherit;
}
.logo-link:hover {
    color: var(--accent-color); /* or another highlight color */
}

p {
    font-size: 1.05rem; /* or 1.1rem for slightly larger */
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.styled-divider {
    width: 5%;
    height: 4px;
    background: linear-gradient(to right, #004466, #00aaff);
    border: none;
    margin: auto;
    margin-bottom: 1.0em;
    border-radius: 6px;
}

.logo-image {
    height: 35px;
    width: auto;
}

.page-header {
    flex: 1;
    text-align: center;
}

.page-header h2 {
    font-size: 2.4rem;
    color: var(--primary-color);
}
.page-header p {
    margin-bottom: 2.0em;

}