* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #003087; /* Dark blue */
    line-height: 1.6;
    background-color: #fff;
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #003087; /* Dark blue */
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #003087; /* Dark blue */
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #6b48ff; /* Lighter blue for hover */
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #003087 0%, #001a44 100%);
    color: white;
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Content Section */
.content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.main-text {
    background-color: #f0f4ff; /* Light blue */
    padding: 2rem;
    border-radius: 8px;
}

.main-text h2 {
    color: #003087; /* Dark blue */
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.sidebar {
    padding: 2rem;
    background-color: #d9e4ff; /* Softer blue */
    border-radius: 8px;
}

.sidebar h3 {
    color: #003087; /* Dark blue */
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.services-section h2 {
    color: #003087; /* Dark blue */
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card .image-container {
    height: 300px; 
    background-size: cover; 
    background-position: center; 
    width: 100%; 
}

.service-card:nth-child(1) .image-container {
    background-image: url('image1.jpg');
}

.service-card:nth-child(2) .image-container {
    background-image: url('image2.jpg');
}

.service-card:nth-child(3) .image-container {
    background-image: url('image3.jpg');
}
.service-card .title-bar {
    background-color: #6b48ff; /* Lighter blue */
    color: white;
    padding: 0.5rem 1rem;
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
}

.service-card .content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 150px;
}

.service-card p {
    font-size: 0.95rem;
    color: #003087; /* Dark blue */
    flex-grow: 1;
}

/* Footer */
footer {
    background-color: #f0f4ff; /* Light blue */
    color: #003087; /* Dark blue */
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        padding: 6rem 1rem 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .content {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card .content {
        min-height: auto;
    }
}

/* Buttons */
button {
    background-color: #003087;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s;
}

button:hover {
    background-color: #6b48ff; /* Lighter blue on hover */
}

.about-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.about-section h2 {
    color: #003087; /* Dark blue */
    font-size: 2rem;
    margin-bottom: 2rem;
}

.about-content {
    background-color: #f0f4ff; /* Light blue */
    padding: 2rem;
    border-radius: 8px;
    line-height: 1.6;
}