* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f9f9f9;
  color: #333;
  padding-top: 130px;
  padding-bottom: 60px;
  min-height: 100vh;
}


header {
  background-color: #003366;
  color: #fff;
  padding: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 60%;
}

.logo {
  height: 90px;
  width: auto;
}

.text-info h1 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.contact-info {
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-info i {
  margin-right: 5px;
  color: #ffcc00;
}

.hero {
  text-align: right;
  padding-right: 1rem;
  margin-top: 1rem;
}

.hero h2 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.3rem;
}

.hero p {
  font-size: 1rem;
  color: #ffcc00;
}


.main-card {
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f0fc 100%);
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}


.button {
  display: block;
  margin: 1rem auto;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 900;
  background-color: #2542e9;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  line-height: 1.4;
  transition: all 0.3s ease;
  width: 90%;
  max-width: 300px;
}

.button:hover {
  background-color: #4890ee;
  transform: translateY(-2px);
}


.scroll-indicator {
  text-align: center;
  margin: -0.5rem;
}

.scroll-indicator p {
  font-size: 1.8rem;
  font-weight: 900;
  color: #2542e9;
  margin-bottom: 0.5rem;
}

.arrow {
  font-size: 3.5rem;
  color: #2542e9;
  animation: bounceArrow 1.5s infinite ease-in-out;
  display: block; 
  margin-top: 0.5rem; 
  position: relative;
  top: 10px; 
}

.about-us {
  background-color: #e8f0fc;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  margin: 1rem 0;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background-color: #2542e9;
  border-radius: 16px 16px 0 0;
}

.about-us:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.about-us h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #003366;
  display: flex;
  align-items: center;
}

.about-us h3 i {
  margin-right: 10px;
  color: #2542e9;
}

.about-us ul {
  padding-left: 1.2rem;
}

.about-us li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.acred-button {
  margin-top: 1rem;
  text-align: right;
}


.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  padding: 0;
  width: 100%;
}

.card {
  background-color: #e8f0fc;
  border-radius: 16px;
  padding: 1.5rem;
  flex: 1 1 300px;
  max-width: 100%;
  min-width: 250px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background-color: #2542e9;
  border-radius: 16px 16px 0 0;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  color: #003366;
}

.card h3 i {
  margin-right: 8px;
  color: #2542e9;
}

.card ul {
  padding-left: 1.2rem;
}

.card li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  margin: 1rem 0;
}


.buttons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 1rem 0;
  width: 100%;
  height: auto;
}

.doc-button {
  display: inline-block;
  padding: 0.8rem 1rem;
  background-color: #2542e9;
  color: #ffffff;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1 1 150px;
  max-width: 250px;
}

.doc-button:hover {
  background-color: #4890ee;
  transform: translateY(-2px);
}


footer {
  background-color: #003366;
  color: #fff;
  text-align: center;
  padding: 1rem;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  font-size: 0.9rem;
}


@keyframes bounceArrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 180px;
    padding-bottom: 70px;
  }
  
  header {
    flex-direction: column;
    align-items: center;
  }
  
  .header-left {
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }
  
  .hero {
    text-align: center;
    margin-top: 1rem;
    padding-right: 0;
  }
  
  .text-info h1 {
    white-space: normal;
  }
  
  .contact-info {
    font-size: 0.8rem;
  }
  
  .card {
    min-width: 100%;
  }
  
  .doc-button {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 200px;
  }
  
  .logo {
    height: 60px;
  }
  
  .hero h2 {
    font-size: 1.1rem;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
  
  .button {
    font-size: 1rem;
    padding: 0.8rem;
  }
  
  .about-us h3, .card h3 {
    font-size: 1.1rem;
  }
  
  .about-us li, .card li {
    font-size: 0.85rem;
  }
  
  .map-container {
    height: 300px;
  }
}