
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0b1f36;
    color: #f0f0f0;
}
.header-center {
    background-color: #000;
    padding: 20px 0;
}
.header-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    color: white;
}
.logo-img {
    width: 60px;
    height: auto;
}
.nav-links a {
    color: white;
    text-decoration: none;
    margin: 0 12px;
}
.nav-links a:hover {
    text-decoration: underline;
}
.hero {
    text-align: center;
    padding: 60px 20px 40px;
}
.hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}
.hero p {
    font-size: 20px;
    margin-top: 0;
}
.cta-button {
    margin-top: 20px;
    display: inline-block;
    background-color: #0055ff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
}
.about-preview {
    max-width: 700px;
    margin: 40px auto;
    text-align: center;
    padding: 0 20px;
}
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}
.contact-form form {
    display: flex;
    flex-direction: column;
}
.contact-form label {
    margin: 12px 0 5px;
}
.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 5px;
    border: none;
    margin-bottom: 20px;
    font-size: 16px;
}
.contact-form textarea {
    min-height: 120px;
}
.contact-form button {
    background-color: #0055ff;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}
.contact-form button:hover {
    background-color: #003fcc;
}

.bottom-cta {
    text-align: center;
    margin: 40px 0;
}


/* Alignment fixes */
.logo-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.navbar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.services-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2em;
    text-align: left;
}


/* Ensure header space styling is consistent */
.top-header {
    background-color: #000;
    padding: 1.5em 0;
}


/* CTA block styling */
.page-cta {
    text-align: center;
}
.page-cta a {
    color: #9cc4ff;
    font-weight: bold;
    text-decoration: none;
}
.page-cta a:hover {
    text-decoration: underline;
}


/* CTA button style like homepage */
.page-cta {
    text-align: center;
}
.page-cta a {
    background-color: #007bff;
    color: #ffffff;
    padding: 0.75em 1.5em;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}
.page-cta a:hover {
    background-color: #0056b3;
}
