html {
    font-size: 18px;
}

body {
    font-family: Arial, sans-serif;
    background: #0B1035;
    color: #fff;
    margin: 0;
    padding: 0;
}

header, footer {
    background: #D8A225;
    padding: 1em;
    text-align: center;
    color: #000;
}

nav a {
    margin: 0 1em;
    color: #000;
    text-decoration: none;
}

main {
    padding: 2em;
}

.header-bar {
    position: relative;
    height: 100px;
}

.logo {
    height: 100px;
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 1;
}

.center-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 0;
}

.center-title h1 {
    margin: 0;
    font-size: 1.8em;
    font-weight: bold;
    color: #3e0a79;
}

.slogan {
    font-style: italic;
    margin: 0;
}

/* Navigation stays below */
.main-nav {
    display: flex;
    gap: 30px;
    justify-content: center;
    padding-top: 10px;
}

.contact-form {
    max-width: 600px;
    margin: 2em auto;
    background-color: #0B1035;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-bottom: 0.5em;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    padding: 0.7em;
    margin-bottom: 1.5em;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #000;
    font-size: 1em;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid #D8A225;
}

.contact-form button {
    background-color: #D8A225;
    color: #000;
    font-weight: bold;
    padding: 0.7em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.contact-form button:hover {
    background-color: #b0872b;
}

@media (max-width: 768px) {
    .header-bar {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        padding: 1em 0;
        position: relative;
    }

    .logo {
        position: static;
        height: 70px;
        margin-bottom: 0.5em;
    }

    .center-title {
        position: static;
        transform: none;
        text-align: center;
        z-index: 0;
    }

    .center-title h1 {
        font-size: 1.5em;
        margin: 0.3em 0;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 0.5em;
    }
}

.hero {
    background: #0B1035;
    color: white;
    padding: 4em 2em;
    text-align: center;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 1.5em;
}

.cta-button {
    background-color: #D8A225;
    color: #000;
    padding: 0.7em 1.5em;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #b0872b;
}

.services-grid {
    background-color: #fff;
    color: #000;
    padding: 3em 2em;
    text-align: center;
}

.services-grid h2 {
    font-size: 2em;
    margin-bottom: 1em;
}

.services-grid .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.card {
    background: #f8f8f8;
    padding: 1.5em;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

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

.why-choose-us {
    background-color: #0B1035;
    color: white;
    padding: 3em 2em;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2em;
    margin-bottom: 1em;
}

.why-choose-us ul {
    list-style: none;
    padding: 0;
}

.why-choose-us li {
    margin: 0.5em 0;
    font-size: 1.1em;
}

.services-grid form {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.contact-form {
  background-color: #0B1035;
  padding: 2em;
  border-radius: 10px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
  color: white;
}
