body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #e6e9ef;
}

header {
  background: #194d90;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 28px;
  font-weight: bold;
}

header nav a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
  font-size: 18px;
}

.banner {
  background: black;
  color: yellow;
  padding: 15px;
  font-size: 18px;
  text-align: center;
}

.center {
  text-align: center;
}

table {
  width: 85%;
  margin: 10px auto;
  border-collapse: collapse;
  background: white;
}

table th, table td {
  border: 1px solid #c5c5c5;
  padding: 12px;
  text-align: center;
  font-size: 16px;
}

table th {
  background: #e4e9ed;
}

.row {
  display: flex;
  width: 90%;
  margin: auto;
  gap: 5%;
}

.column {
  width: 45%;
}


input, textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid gray;
  border-radius: 4px;
}

textarea {
  height: 120px;
}



footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 1px;
  font-size: 16px;
}

footer a { color: skyblue; }

h2 {
    margin-top: 20px;
}

.features {
    list-style: none;
    padding: 0;
}

.features li {
    margin: 8px 0;
    padding-left: 25px;
    position: relative;
}

.features li::before {
    content: "✔";
    color: green;
    position: absolute;
    left: 0;
}

.features h2::before {
    content: "✔";
    color: green;
    position: absolute;
    left: 0;
}
.features h2 {
    margin: 8px 0;
    padding-left: 25px;
    position: relative;
}
.features h3::before {
    content: "✔";
    color: green;
    position: absolute;
    left: 0;
}    

.features h3 {
    margin: 8px 0;
    padding-left: 25px;
    position: relative;
}


.content-row {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
    ;
}

table {
    border-collapse: collapse;
    width: 300px;
}

table, th, td {
    border: 1px solid #ccc;
}

th, td {
    padding: 8px;
    text-align: center;
}

.column img {
  width: 100%;
  border-radius: 6px;
  text-align: right;
  
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 images per row */
  /* gap: 10px; */
  max-width: 600px;
  text-align: center;
}

.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.page-center {
  display: flex;
  justify-content: center;
  align-items: center;
  /* min-height: 100vh; full screen height */
  min-height: 100px;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
}

/* Center form on page */
.page-center {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

/* Form box */
.contact-form {
  margin-top: 0;  
  background: #fff;
  width: 700px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  padding-top: 0px;
}

/* .contact-form h3 {
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
} */

.contact-form h3 {
      
  font-size: 18px;
  border-bottom: 1px solid #ddd;
}

/* Form rows */
.form-row {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
 
}

.form-row label {
  width: 170px;
  font-size: 14px;
  color: #444;
}

.form-row input,
.form-row textarea {
  flex: 1;
  padding: 6px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

textarea {
  resize: none;
  height: 60px;
}

/* Buttons */
.buttons {
  text-align: right;
  margin-top: 15px;
}

button {
  padding: 6px 14px;
  border: none;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.submit {
  background: #2c7da0;
}

.reset {
  background: #1b4965;
  margin-left: 8px;
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f4f4f4;
}

/* Header */
header {
    background: #2c5aa0;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

/* Info Bar */
.info-bar {
    background: black;
    color: yellow;
    text-align: center;
    padding: 10px;
}

/* Contact Section */
.contact {
    background: white;
    padding: 20px;
}

.contact-container {
    display: flex;
    gap: 50px;
    width: 100%;
}

.contact-info {
    width: 50%;
}

.map img {
    width: 100%;
    border-radius: 5px;
}

/* Gallery */
.gallery {
    padding: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 6px;
}

