body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    color: #57606f; /* Soft Grey Text */
    line-height: 1.6;
    background-color: #f1f2f6; /* Very Soft Grey-Blue Background */
}

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: #2f3542; /* Darker Grey for Headings */
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

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

.top-bar {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #dfe4ea;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #e17055; /* Soft Terracotta Accent */
}

.contact-header {
    font-size: 14px;
    color: #747d8c;
}

.contact-header span {
    margin-left: 10px;
}

.main-nav {
    background: #3c6382; /* Soft Slate Blue */
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav a {
    display: block;
    padding: 15px 25px;
    color: #dfe4ea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.main-nav a:hover {
    background: #0a3d62; /* Darker Slate */
    color: #fff;
}

.banner {
    background: linear-gradient(rgba(60, 99, 130, 0.85), rgba(60, 99, 130, 0.7)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    text-align: center;
    border-bottom: 5px solid #e17055;
    color: #fff;
    animation: fadeIn 2s ease-in-out;
}

.banner h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: slideDown 1s ease-out;
}

.banner p {
    font-size: 24px;
    color: #f1f2f6;
    max-width: 700px;
    margin: 0 auto;
    animation: slideUp 1s ease-out 0.5s backwards;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.service-box {
    background: #fff;
    padding: 30px;
    border: 1px solid #dfe4ea;
    border-radius: 8px; /* Softer corners */
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(60, 99, 130, 0.15);
    border-bottom: 3px solid #e17055;
}


.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    color: #2f3542;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #e17055;
    margin: 15px auto 0;
    border-radius: 2px;
}

.services-row {
    display: flex;
    gap: 30px;
    text-align: center;
}

.service-box {
    flex: 1;
    padding: 30px;
    border: 1px solid #f1f2f6;
    transition: box-shadow 0.3s;
}

.bg-light {
    background: #e6eaeb; /* Slightly darker than main bg for contrast */
}

.process-steps {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.step {
    flex: 1;
    padding: 20px;
}

.number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #e17055;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(225, 112, 85, 0.4);
}

footer {
    background: #3c6382;
    color: #dfe4ea;
    padding: 60px 0 20px;
}

footer a {
    color: #f1f2f6;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #e17055;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #b2bec3;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .services-row, .process-steps, .footer-grid {
        flex-direction: column;
        display: flex;
    }
    .main-nav ul {
        flex-direction: column;
    }
    .main-nav a {
        text-align: center;
    }
}
