
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f7fc;
    color: #222;
    padding-top: 72px;

}
.topbar {
    position: fixed;
    background: white;
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    padding: 1em 2em;
    align-items: center;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-weight: bold;
    font-size: 1.2em;
}
.brand-name {
  font-size: 1.2rem;
  text-align: center;
  display: flex; 
  font-weight: bold;
}

@media (max-width: 600px) {
  .brand-name {
    font-size: 1rem;
    display: block;
    margin-top: 0.5em;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}
nav a {
    margin-left: 1.5em;
    color: #004a99;
    text-decoration: none;
    font-weight: 500;
}
nav a:hover {
    text-decoration: underline;
}
.hero {
    display: flex;
    flex-wrap: wrap;
    padding: 2em;
    align-items: center;
    background: #eaf2fc;
}
.hero .text {
    flex: 1;
    min-width: 280px;
    padding: 1em;
}
.hero .image {
    flex: 1;
    min-width: 280px;
    padding: 1em;
}
.hero img {
    width: 100%;
    border-radius: 8px;
}
section {
    padding: 2em;
    max-width: 1200px;
    margin: auto;
    scroll-margin-top: 72px; 
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5em;
    margin-top: 1em;
}
.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.card img {
    width: 100%;
}
.card h3 {
    margin: 0.5em;
}
.card p {
    margin: 0 0.5em 1em;
}
.split {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
}
.split > div {
    flex: 1;
    min-width: 280px;
}
footer {
    background: #002b5c;
    color: white;
    text-align: center;
    padding: 1.5em;
    margin-top: 2em;
}

.contact-form {
    max-width: 600px;
    margin: 2em auto;
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.contact-form input,
.contact-form textarea {
    padding: 1em;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 6px;
}
.contact-form button {
    background: #004a99;
    color: white;
    border: none;
    padding: 1em;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
}
.contact-form button:hover {
    background: #003366;
}

.contact-block {
    text-align: center;
    padding: 3em 1em;
    background: #eaf2fc;
}
.contact-block .btn {
    background: #004a99;
    color: white;
    padding: 0.75em 1.5em;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 1.5em;
    font-size: 1em;
}
.contact-block .btn:hover {
    background: #003366;
}
html {
  scroll-behavior: smooth;
}