/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f9fafc;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}
.header {
  background: #0b69d3;
  color: #fff;
  text-align: center;
  padding: 30px 10px;
}
.logo {
  max-width: 180px;
  margin-bottom: 15px;
}
.header h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}
.header p {
  font-size: 1rem;
  opacity: 0.9;
}
.hero {
  background: #ffffff;
  padding: 40px 0;
}
.hero-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.hero-text {
  flex: 1 1 60%;
}
.hero-text h2 {
  color: #0b69d3;
  margin-bottom: 15px;
}
.hero-image {
  flex: 1 1 35%;
  text-align: center;
}
.hero-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  border: 2px solid #ddd;
}
.content {
  background: #ffffff;
  padding: 40px 20px;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.content h3 {
  color: #0b69d3;
  margin-bottom: 20px;
}
.content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
.content li {
  margin-bottom: 10px;
}
.cta-text {
  margin: 20px 0;
}
.cta-btn a {
  display: inline-block;
  background: #0b69d3;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.cta-btn a:hover {
  background: #094ea1;
}
.map-section {
  text-align: center;
  padding: 40px 20px;
}
.map-section h3 {
  color: #0b69d3;
  margin-bottom: 20px;
}
.map-container iframe {
  width: 100%;
  max-width: 800px;
  border: 0;
  border-radius: 8px;
}
.footer {
  background: #0b69d3;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
}
.footer a {
  color: #fff;
  text-decoration: underline;
}
.footer a:hover {
  color: #f1f1f1;
}
@media(max-width:768px){
  .hero-flex {
    flex-direction: column;
  }
}