:root {
    --primary-blue: #0a2d4d;
    --secondary-blue: #a9c4d4;
    --light-background: #eaf0f4;
    --text-light: #ffffff;
    --text-dark: #333333;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-light);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
.main-header {
    background-color: var(--primary-blue);
    color: var(--text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-blue);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(10, 45, 77, 0.7), rgba(10, 45, 77, 0.7)), url('assets/hero-background.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
    background-color: var(--secondary-blue);
    color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: #c1d5e0;
}

.btn-secondary {
    background-color: var(--secondary-blue);
    color: var(--primary-blue);
}

.btn-secondary:hover {
    background-color: #c1d5e0;
}

/* Content Sections */
.content-section {
    background-color: var(--light-background);
    padding: 60px 0;
    text-align: center;
}

.content-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.content-section p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Services Section */
.services-section {
    padding: 60px 0;
    background-color: var(--primary-blue);
}

.services-section .section-title {
    text-align: center;
    font-family: var(--font-heading);
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--light-background);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.service-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-card p {
    margin-bottom: 20px;
    flex-grow: 1;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid var(--secondary-blue);
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question span {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 10px 20px 10px;
    font-size: 1rem;
    text-align: left;
}

.faq-item.active .faq-question span {
    transform: rotate(180deg);
}

/* About Section */
.about-header {
    background: linear-gradient(rgba(10, 45, 77, 0.6), rgba(10, 45, 77, 0.6)), url('assets/about-us-header.jpg') no-repeat center center/cover;
    padding: 60px 0;
    text-align: center;
}

.about-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-light);
}

.about-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    margin-top: 30px;
}

.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    margin-top: 40px;
}

.feature-card {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid var(--secondary-blue);
}

.feature-card h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(10, 45, 77, 0.8), rgba(10, 45, 77, 0.8)), url('assets/cta-background.jpg') no-repeat center center/cover;
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer */
.main-footer {
    background-color: var(--primary-blue);
    color: var(--text-light);
    text-align: center;
    padding: 20px 0;
}