body {
    font-family: Arial, sans-serif;
}

/* Hero Section */
.hero {
    background: url('/images/header_bg.webp') center/cover no-repeat;
    padding: 200px 0;
}

/* Service Cards */
.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-title {
    color: #007bff;
}

/* Footer */
footer {
    margin-top: 20px;
}

/* Services Section */
.services h3 {
    color: #003366;
    font-weight: bold;
}

.services img {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 5px;
    width: 100%;
}

.services ul {
    list-style: none;
    padding: 0;
}

.services ul li {
    font-size: 16px;
    margin-bottom: 5px;
}

/* Service Box */
.service-box {
    display: flex;
    align-items: center;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.service-image img {
    width: 300px;
    border-radius: 10px;
    margin-right: 20px;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 24px;
    color: #2c3e50;
}

.service-text h3 {
    font-size: 20px;
    color: #2980b9;
}

.service-text ol {
    padding-left: 20px;
}

.service-text ol li {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

/* Sections */
.section {
    padding: 50px 20px;
}

/* Contact Info */
.contact-info {
    background-color: white;
    margin: 20px auto;
    padding: 40px;
    width: 60%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form {
    margin: 20px auto;
}

/* Paragraphs */
p {
    font-size: 16px;
    margin-bottom: 5px;
}

/* Form Styles */
.form-group {
    width: 100%;
    margin: 15px 0;
    text-align: left;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group textarea {
    height: 100px;
    resize: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    color: white;
    background-color: #2a3d8f;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    margin-top: 10px;
}

.btn:hover {
    background-color: #1f2c63;
}

/* Clients & Services Section */
.clients-section, .services-section {
    margin: 50px 0;
}

.clients-section h2, .services-section h2 {
    font-size: 32px;
    font-weight: bold;
}

.clients-section p, .services-section p {
    font-size: 14px;
    margin-bottom: 20px;
}

/* Clients Container */
.clients-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.client {
    text-align: center;
}

.client img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

/* Download Button */
.download-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    border: 2px solid #2a3d8f;
    color: #2a3d8f;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

.download-btn:hover {
    background: #2a3d8f;
    color: white;
}

/* Welcome Text */
.welcome-text {
    text-align: center;
    color: #003366;
    font-size: 2em;
    font-weight: bold;
    margin-top: 20px;
}

/* Primary Background */
.bg-primary {
    background-color: #003366;
}

/* Service Cards */
.service-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.service-card img {
    max-width: 180px;
    border-radius: 5px;
}

.service-content {
    flex: 1;
}