* {
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f9f9f9;
}

.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 1450px;
  margin: 0 auto;
  padding: 60px 4vw;
}

.contact-box {
  background-color: #182249;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  color: #333;
  border: 2px solid #0c41e2;
  position: relative;
  overflow: hidden;
}

.contact-box h2 {
  position: relative;
  color: white;
  z-index: 1;
  margin-bottom: 30px;
 font-size: 35px;
}

.form-box {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  color: #333;
}

.form-box h2 {
  margin-bottom: 30px;
  color: #182249;
font-size: 35px;
}


.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.contact-item i {
  font-style: normal;
  margin-right: 10px;
  min-width: 24px;
  text-align: center;
}

.company-info {
  margin-top: 10px;
  margin-bottom: 25px;
}

.company-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: white;
}

.company-info .subtitle {
  font-size: 17px;
  color: white;
}

.contact-item h5 {
  font-size: 16px;
  margin-bottom: 5px;
  color: white;
}

.contact-item p {
  font-size: 16px;
  color: white;
}

.contact-item a {
  color: #faab1c;
  text-decoration: none;
  font-size: 14px;
}

.contact-item a:hover {
  text-decoration: underline;
}

.map-button {
  background-color: #2196f3;
  color: white !important;
  padding: 10px 18px;
  display: inline-block;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  margin-left: 32px;
}

.map-button:hover {
  background-color: #0d8bf2;
  text-decoration: none !important;
}

.form-box input,
.form-box textarea {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-box button {
  background-color: #faab1c;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  font-weight: bold;
}

.form-box button:hover {
  background-color: #e79a0f;
}

/* Responsive Views */
@media (max-width: 1150px) {
  .container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .container {
    padding: 30px 3vw;
  }
  
  .contact-box, 
  .form-box {
    padding: 30px 20px;
  }
  
  .company-info h4 {
    font-size: 16px;
  }
  
  .map-button {
    margin-left: 24px;
  }
}

@media (min-width: 1151px) {
  .container {
    grid-template-columns: 1fr 1fr;
  }
}