/* === Base === */
body {
  margin: 0;
  font-family: 'Titillium Web', sans-serif;
  background-color: #fefefe;
  color: #222;
}

.site-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* === Top Header with Logo + Slices === */
.top-header-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  border-radius: 24px;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.top-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 232px;
  font-size: 0;
}

.logo-fill {
  flex: 1;
  height: 100%;
  background-repeat: repeat-x;
  background-size: 2px 232px;
  background-position: center;
}

.left-fill {
  background-image: url('../images/logo/detailed_logo/logoEdgeLeft.jpg');
}

.right-fill {
  background-image: url('../images/logo/detailed_logo/logoEdgeRight.jpg');
}

.company-logo-detailed {
  display: inline-block;
  height: 232px;
  width: auto;
  vertical-align: top;
  border: none;
}

/* === About Page Content === */
.about-container {
  padding: 40px 20px;
  text-align: center;
}

.about-container h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #2c3e50;
}

.contact-info {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #444;
}

/* === Blue Buttons for Showing the Form === */
.quote-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.quote-button {
  background-color: #0077aa;
  border: none;
  padding: 12px 24px;
  font-size: 18px;
  border-radius: 8px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.quote-button:hover {
  background-color: #005f88;
}

/* === Contact Form (Hidden by Default) === */
#contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background-color: #f4f4f4;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

#contact-form-wrapper.hidden {
  display: none;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

/* === Submit Button (also Blue) === */
.submit-button {
  background-color: #0077aa;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #005f88;
}
