/* Color Palette: Deep Blue, Professional White, Gold/Orange accents */
:root {
    --primary-color: #0d2b4f;
    --secondary-color: #1c528e;
    --accent-color: #ff9900;
    --text-color: #333333;
    --light-bg: #f5f7fa;
    --white: #ffffff;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

header .logo {
    float: left;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

header nav {
    float: right;
    margin-top: 5px;
}

header nav a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
    font-size: 16px;
    transition: color 0.3s;
}

header nav a:hover {
    color: var(--accent-color);
}

.hero {
    background: linear-gradient(rgba(13, 43, 79, 0.8), rgba(13, 43, 79, 0.8)), url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    height: 70vh;
    color: var(--white);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 54px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 22px;
    margin-bottom: 30px;
    max-width: 800px;
}

.btn {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background 0.3s;
    font-weight: bold;
}

.btn:hover {
    background: #e68a00;
}

section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.text-center {
    text-align: center;
}

h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 10px auto 0;
}

.services {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.service-box {
    flex: 1 1 30%;
    background: var(--white);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 5px solid var(--secondary-color);
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-box h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.info-text p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    line-height: 1.8;
}

footer {
    background: #111;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 25%;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 20px;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 5px;
}

.footer-col p, .footer-col a {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 25px;
    font-size: 14px;
}

/* Internal Pages */
.page-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin: 0;
}

.content-section {
    padding: 60px 0;
    min-height: 50vh;
}

.content-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.content-section h3 {
    color: var(--secondary-color);
    margin-top: 40px;
    font-size: 24px;
}

.content-section ul {
    font-size: 18px;
    line-height: 1.8;
}
