:root {
    --primary-blue: #0A2351;
    --secondary-gold: #FFC107;
    --new-accent-gray: #495057;
    --text-dark: #333;
    --text-light: #f0f0f0;
    --light-bg: #f8f9fa;
    --white: #fff;
    --gradient-start: #0A2351;
    --gradient-end: #1a3a6b;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

header {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 55px;
    margin-right: 12px;
}

.company-name h1 {
    margin: 0;
    font-size: 2em;
    color: var(--white);
    letter-spacing: 0.5px;
}
.company-name p {
    margin: 0;
    font-size: 0.85em;
    color: var(--secondary-gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

nav ul li {
    position: relative;
    margin-left: 35px;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    padding: 8px 0;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 2px solid transparent;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--secondary-gold);
    border-bottom-color: var(--secondary-gold);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--primary-blue);
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    padding: 10px 0;
    border-top: 3px solid var(--secondary-gold);
    left: 0;
}

.dropdown-content a {
    color: var(--white);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-weight: normal;
    font-size: 1em;
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #1a3a6b;
    color: var(--secondary-gold);
}

.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown .dropbtn::after {
    content: ' \25BC';
    font-size: 0.8em;
    margin-left: 5px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.branding-banner {
    background-color: var(--primary-blue);
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
}
.branding-banner h1 {
    font-size: 3em;
    font-weight: bold;
    margin: 0;
    color: var(--secondary-gold);
}
.branding-banner p {
    font-size: 1.2em;
    margin: 10px 0 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero {
    background: linear-gradient(rgba(10, 35, 81, 0.7), rgba(10, 35, 81, 0.7)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 100px 20px 120px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255,193,7,0.1) 0%, transparent 50%);
    pointer-events: none;
}
.hero h2 {
    font-size: 3.2em;
    margin-bottom: 25px;
    color: var(--secondary-gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}
.hero p {
    font-size: 1.4em;
    max-width: 850px;
    margin: 0 auto 40px;
    font-weight: 300;
}
.btn {
    display: inline-block;
    background-color: var(--secondary-gold);
    color: var(--primary-blue);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.btn:hover {
    background-color: #e0ac00;
    transform: translateY(-2px);
}

section {
    padding: 80px 0;
    position: relative;
}
section:nth-of-type(even) {
    background-color: var(--light-bg);
}
section h3 {
    font-size: 2.8em;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}
section h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background-color: var(--secondary-gold);
    border-radius: 3px;
}

.overview-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}
.overview-text, .overview-image {
    flex: 1;
    min-width: 300px;
}
.overview-text p {
    font-size: 1.1em;
    margin-bottom: 20px;
}
.overview-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

#value-prop {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 80px 0;
}
#value-prop h3 {
    color: var(--secondary-gold);
}
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}
.value-item {
    background-color: rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,193,7,0.3);
    transition: background-color 0.3s ease;
}
.value-item:hover {
    background-color: rgba(255,255,255,0.15);
}
.value-item .icon {
    font-size: 3.5em;
    color: var(--secondary-gold);
    margin-bottom: 15px;
}
.value-item h4 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: var(--white);
    font-weight: 600;
}