* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', 'Helvetica', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-top {
  background-color: #1a3a5f;
  color: #fff;
  padding: 8px 0;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.connect-text {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.connect-text:hover {
  opacity: 0.8;
}

.social-link {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.header-main {
  background: linear-gradient(135deg, #eef4fa 0%, #ffffff 45%, #eef2f6 100%);
  border-bottom: 2px solid #1a3a5f;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 34px 0;
  flex-wrap: wrap;
  gap: 28px;
}

.logo-section {
  flex: 1;
  min-width: 300px;
}

.logo {
  font-size: 24px;
  color: #1a3a5f;
  font-weight: bold;
  margin-bottom: 5px;
}

.logo-subtitle {
  font-size: 14px;
  color: #1a3a5f;
  font-weight: 600;
  margin-bottom: 3px;
}

.logo-tagline {
  font-size: 12px;
  color: #666;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 280px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #1a3a5f;
  font-size: 14px;
  line-height: 1.6;
}

.contact-item svg {
  flex-shrink: 0;
}

.main-nav {
  background-color: #1a3a5f;
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 15px;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  padding: 15px 20px;
  display: inline-block;
  transition: background-color 0.3s;
  font-size: 14px;
}

.nav-link:hover {
  background-color: #2a4a6f;
}

.nav-link.active {
  background-color: #d32f2f;
  color: #fff;
}

.main-content {
  padding: 40px 0 0 0;
}

.quote-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}

.form-container {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
}

.section-title {
  font-size: 32px;
  color: #1a3a5f;
  margin-bottom: 15px;
  font-weight: bold;
}

.form-intro {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.8;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #1a3a5f;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a3a5f;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background-color: #1a3a5f;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #2a4a6f;
}

.image-container {
  position: sticky;
  top: 20px;
}

.construction-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-sections {
  background-color: #1a3a5f;
  color: #333;
}

.info-title {
  font-size: 36px;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.info-row-wrapper {
  width: 100%;
  padding: 50px 0;
}

.info-row-wrapper-1 {
  background-color: #1a3a5f;
}

.info-row-wrapper-2 {
  background-color: #f5f5f5;
}

.info-row-wrapper-3 {
  background-color: #e8e8e8;
}

.info-row-wrapper-4 {
  background-color: #f0f0f0;
}

.info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.info-image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  align-items: center;
}

.info-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
}

.info-block {
  padding: 40px;
  border-radius: 8px;
  border: 3px solid;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 400px;
}

.info-block-1 {
  background-color: #51657a78;
  border-color: #5a9bd4;
  color: #fff;
}

.info-block-2 {
  background-color: #2d5a87;
  border-color: #6bb3e8;
  color: #fff;
}

.info-block-3 {
  background-color: #1e4a6b;
  border-color: #4d8fc7;
  color: #fff;
}

.info-block-4 {
  background-color: #2a4a6f;
  border-color: #7ab8e5;
  color: #fff;
}

.info-block-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}

.info-block-text {
  line-height: 1.8;
  color: #f0f0f0;
  font-size: 15px;
}

.gallery-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-image:hover {
  transform: scale(1.05);
}

.footer {
  background-color: #1a3a5f;
  color: #fff;
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-logo {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-description {
  line-height: 1.8;
  color: #e0e0e0;
  font-size: 14px;
}

.footer-heading {
  font-size: 16px;
  margin-bottom: 15px;
  color: #fff;
  text-transform: uppercase;
}

.footer-partners {
  margin-left: auto;
}

.partners-note {
  color: #dbe6f1;
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 14px;
}

.partners-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  min-height: 40px;
}

.partners-image-container {
  margin-top: 10px;
}

.partners-image {
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #e0e0e0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.privacy-link {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}

.privacy-link:hover {
  color: #fff;
}

.separator {
  color: rgba(255, 255, 255, 0.3);
}

.privacy-page {
  padding: 40px 0;
  min-height: calc(100vh - 400px);
}

.privacy-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.privacy-title {
  font-size: 36px;
  color: #1a3a5f;
  margin-bottom: 30px;
}

.privacy-section {
  margin-bottom: 30px;
}

.privacy-section h2 {
  font-size: 24px;
  color: #1a3a5f;
  margin-bottom: 15px;
}

.privacy-section p {
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
}

.bold {
  font-weight: 800;
  color: black;
}

.privacy-list {
  margin-left: 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .header-content {
    padding: 24px 0;
  }

  .hero-copy {
    min-width: 100%;
  }

  .contact-card {
    flex: 1 1 100%;
    width: 100%;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-text {
    font-size: 15px;
  }

  .quote-section {
    grid-template-columns: 1fr;
  }

  .image-container {
    position: static;
  }

  .header-content {
    flex-direction: column;
  }

  .main-nav {
    flex-direction: column;
  }

  .nav-link {
    width: 100%;
    text-align: center;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-image-wrapper {
    min-height: 300px;
  }

  .info-image {
    min-height: 300px;
  }

  .info-block {
    padding: 25px;
    min-height: 300px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .privacy-content {
    padding: 20px;
  }
}


.hero-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(26, 58, 95, 0.12);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(18, 43, 71, 0.12);
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(26, 58, 95, 0.08), transparent 32%);
  pointer-events: none;
}

.hero-copy {
  flex: 1 1 560px;
  padding: 8px 4px 8px 6px;
  min-width: 320px;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(26, 58, 95, 0.08);
  color: #1a3a5f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-lead {
  font-size: 18px;
  color: #24384f;
  margin: 12px 0 10px;
  font-weight: 700;
}

.hero-text {
  max-width: 700px;
  color: #4c5f72;
  font-size: 16px;
  line-height: 1.8;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f3f6f9;
  border: 1px solid rgba(26, 58, 95, 0.1);
  color: #1a3a5f;
  font-size: 13px;
  font-weight: 700;
}

.contact-card {
  flex: 0 0 360px;
  background: linear-gradient(180deg, #173453 0%, #1f466c 100%);
  color: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(26, 58, 95, 0.18);
}

.contact-card-header {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: #d8e7f6;
  margin-bottom: 8px;
}

.contact-card .contact-item {
  color: #ffffff;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-card .contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-card .contact-item strong {
  display: inline-block;
  margin-bottom: 2px;
  color: #ffffff;
}

.contact-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  flex-shrink: 0;
}



.header-main {
  position: relative;
  overflow: hidden;
}

.header-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(26, 58, 95, 0.08), transparent 22%),
    radial-gradient(circle at 92% 20%, rgba(45, 90, 135, 0.10), transparent 24%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.hero-point {
  padding: 14px 15px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fa 100%);
  border: 1px solid rgba(26, 58, 95, 0.1);
  box-shadow: 0 10px 22px rgba(18, 43, 71, 0.06);
}

.hero-point strong {
  display: block;
  color: #1a3a5f;
  font-size: 13px;
  margin-bottom: 5px;
}

.hero-point span {
  display: block;
  color: #526578;
  font-size: 12px;
  line-height: 1.55;
}

.contact-card {
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
  .hero-points {
    grid-template-columns: 1fr;
  }
}
