body {
    margin: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;

    /* Soft cool background instead of white */
    background: #f4f8fb;

    color: #083c44;
    -webkit-font-smoothing: antialiased;
}

/* Layout */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 40px 0;
}

.narrow {
    max-width: 700px;
}

/* Top Bar */
.topbar {
    background: linear-gradient(to right, #ffffff, #f0f7fa);
    border-bottom: 1px solid #dbeef2;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px; /* Slightly larger */
}

.email {
    text-decoration: none;
    color: #0f6f6f;
    font-size: 15px;
    font-weight: 500;
    position: relative;
}

/* Subtle underline animation */
.email::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: #0f6f6f;
    transition: width 0.3s ease;
}

.email:hover::after {
    width: 100%;
}

/* Slim Hero */
.hero {
    padding: 70px 0 50px 0;
    background: linear-gradient(180deg, #f4f8fb 0%, #ffffff 100%);
}

.hero h1 {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.5;
}

.arrow {
    display: inline-block;
    margin-left: 8px;
    animation: slideArrow 2s infinite ease-in-out;
    color: #0f6f6f;
}

/* Subtle arrow animation */
@keyframes slideArrow {
    0% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(6px); opacity: 1; }
    100% { transform: translateX(0); opacity: 0.6; }
}

/* Section headers */
h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #0f6f6f;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Why Section */
.why {
    background: #ffffff;
}

.why p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Services */
.services {
    background: #f0f7fa; /* Light teal tint */
}

.services ul {
    list-style: none;
    padding: 0;
}

.services li {
    padding: 14px 0;
    border-bottom: 1px solid #dbeef2;
    font-size: 16px;
}

/* Contact */
.contact {
    background: #083c44; /* Deep teal anchor */
    color: white;
    text-align: left;
}

.contact-text {
    font-size: 18px;
    margin-bottom: 25px;
}

.button {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.button:hover {
    background: white;
    color: #083c44;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    font-size: 13px;
    background: #083c44;
    color: #9ec3c9;
}

/* Soft fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 1.2s ease forwards;
}

.fade-in:nth-of-type(2) { animation-delay: 0.2s; }
.fade-in:nth-of-type(3) { animation-delay: 0.4s; }
.fade-in:nth-of-type(4) { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}