* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #f5f7fb;
}

.container {
  width: 1200px;
  max-width: 95%;
  margin: auto;
}

/* HEADER */
header {
  background: linear-gradient(90deg, #1e3c72, #2a5298);
  padding: 20px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 140px;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: white;
  text-decoration: none;
}

/* HERO */
.contact-hero {
    position: relative;
  padding: 90px 0;
  text-align: center;
  background: url('images/ccc.png') no-repeat center/cover;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.9),
    rgba(255,255,255,0.7)
  );
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  color: #031e4e;
  font-size: 42px;
}

.contact-hero p {
  color: #2b2d2f;
}

/* CONTACT */
.contact {
  padding: 80px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* FORM */
.contact-form h2 {
  margin-bottom: 20px;
  color: #1e3c72;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

form button {
  background: linear-gradient(90deg, #1e3c72, #2a5298);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* INFO */
.contact-info h2 {
  margin-bottom: 20px;
  color: #1e3c72;
}

.contact-info p {
  margin-bottom: 10px;
  color: #555;
}

/* MAP */
.map {
  margin-top: 20px;
}

.map iframe {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  border: none;
}

/* FOOTER */
footer {
  background: linear-gradient(90deg, #1e3c72, #2a5298);
  color: white;
  padding: 30px 0;
  text-align: center;
}

footer .text{

  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;
  gap: 20px;

}