/* Fonts */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    margin: 0;
    line-height: 1.6;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    background-color: #002b45;
    color: #fff;
    padding: 20px 0;
}

header nav {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav .logo {
    font-family: 'Merriweather', serif;
    font-size: 1.8rem;
    font-weight: bold;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

header nav ul li a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #f0a500;
}

/* Hero Section */
.hero {
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-overlay {
    background-color: rgba(0, 43, 69, 0.6);
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    max-width: 800px;
}

.hero h1 {
    font-family: 'Merriweather', serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #f0a500;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #d18e00;
}

/* About & Services layout */
.about-content, .services-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-image img, .services-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Sections */
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.about, .services, .contact {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

h2 {
    color: #002b45;
    margin-bottom: 20px;
    font-family: 'Merriweather', serif;
}

ul {
    list-style: disc inside;
}

footer {
    background-color: #002b45;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Responsive */
@media(max-width: 768px){
    header nav ul {
        flex-direction: column;
        gap: 10px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .about-content, .services-content {
        flex-direction: column;
    }
}