/* Styling to match the clean, blue-themed layout */
:root {
    --dark-blue: #002e5d;
    --light-blue: #d9eaff;
    --accent-blue: #0056b3;
    --text-color: #333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: #f9fbff;
    line-height: 1.6;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
header {
    background: var(--dark-blue);
    padding: 20px 0;
    color: var(--white);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
}

nav a.active {
    border-bottom: 2px solid var(--white);
    padding-bottom: 5px;
}

/* Hero Section */
.hero {
    background-color: var(--light-blue);
    padding: 60px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 42px;
    color: var(--dark-blue);
    line-height: 1.2;
}

.hero-text h1 span {
    display: block;
    font-weight: 800;
}

.hero-text p {
    margin: 20px 0;
    font-size: 18px;
}

.btns .btn-dark {
    background: var(--dark-blue);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    margin-right: 10px;
    display: inline-block;
}

.btns .btn-light {
    background: white;
    color: var(--dark-blue);
    padding: 12px 24px;
    text-decoration: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: inline-block;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Promise & Highlights Sections */
.section-label {
    font-size: 24px;
    color: var(--dark-blue);
    margin: 40px 0 20px;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.promise-card {
    background: white;
    padding: 20px;
    border: 1px solid #e0e0e0;
}

.promise-card h3 {
    color: var(--dark-blue);
    font-size: 18px;
    margin-bottom: 10px;
}

/* Gallery Styling */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.highlights img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    font-size: 14px;
    color: #777;
}