.simple-text h1 {
  font-size: 42px;
  font-weight: 800;
  color: #1f2a44;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.simple-text h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60%;
  height: 4px;
  background: #2563eb;
  border-radius: 2px;
}

.simple-hero {
  background: #f4f7fb;
  display: flex;
  align-items: center;
}

.simple-wrap {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 30px;
}

.simple-text {
  max-width: 560px;
  margin-left: 40px;
}

.simple-text h1 {
  font-size: 40px;
  font-weight: 700;
  color: #1f2a44;
  margin-bottom: 22px;
}

/* === contact grid === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* card */
.contact-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
}

.contact-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* text */
.contact-box .label {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 6px;
}

.contact-box .value {
  font-size: 17px;
  font-weight: 600;
  color: #1f2a44;
  text-decoration: none;
}

/* subtle accent */
.phone-box {
  border-left: 4px solid #2563eb;
}

.mail-box {
  border-left: 4px solid #16a34a;
}

/* 📱 mobile */
@media (max-width: 768px) {
  .simple-text {
    margin-left: 0;
    text-align: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}




#mobmenu
{
display:none;
}
/* === MOBILE HEADER === */
.bd-mobile-header {
  display: none;
  background: #1faa78;
  color: #fff;
  padding: 14px 16px;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.bd-logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Burger */
.bd-burger {
  width: 26px;
  cursor: pointer;
}

.bd-burger span {
  display: block;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
}

/* === MENU === */
.bd-mobile-menu {
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.bd-mobile-menu a {
  padding: 14px 16px;
  text-decoration: none;
  color: #111827;
  border-top: 1px solid #e5e7eb;
  font-size: 15px;
}

/* === MOBILE ONLY === */
@media (max-width: 768px) {
  .bd-mobile-header {
    display: flex;
  }
		#mobmenu
		{
				display:block !important;
				margin-top:-20px;
		}
		#menudesk
		{
				display:none !important;
		}
}


.drive-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.drive-list li a {
  display: block;
  height: 100%;
  padding: 18px 20px;
  background: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  color: #1f2937;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
  border-left: 5px solid #2563eb;
}

.drive-list li a:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  background: #f9fafb;
  color: #1d4ed8;
  border-left-color: #1d4ed8;
}