/* static/css/company/contact.css */

/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Body Styling */
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #444;
}

.company-name {
  color: #04273a;
  text-decoration: none;
  font-weight: 700;
  font-size: 2rem;
}

/* Header Section */
.header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  height: 64px;
  border-bottom: 1px solid #eee;
  padding: 0 2rem;
  z-index: 1000;
}

.logo {
  width: 44px;
  height: 44px;
}

/* Main Container */
.container {
  max-width: 1100px;
  margin: 120px auto 60px auto;
  padding: 20px 20px;

  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Contact Section */
.contact-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #000;
  line-height: 1.2;
}

.contact-title span {
  border-bottom: 3px solid black;
  padding-bottom: 4px;
}

.contact-text {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 500px;
  color: #555;
}

/* Email & Phone Section */
.info-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-label {
  font-size: 1rem;
  color: #777;
}

.info-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
}

.support-time {
  font-size: 0.9rem;
  color: #777;
}

footer {
  border-top: 1px solid #eee;
  padding: 1rem 1.5rem;
  font-size: 13px;
  color: #666;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

footer a {
  color: inherit;
  text-decoration: none;
  margin-left: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-title {
    font-size: 2rem;
  }
}

@media (max-width: 448px) {
  footer {
    flex-direction: column;
    text-align: center;
    gap: 0.7rem;
  }
  footer a {
    margin: 0.5rem;
  }
}
