* {
  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-color: #fff;
  border-bottom: 2px solid #1a3a5f;
}

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

.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: 10px;
  min-width: 250px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1a3a5f;
  font-size: 14px;
}

.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-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) {
  .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;
  }
}
