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

body {
    font-family: "Segoe UI", sans-serif;
    background-color: #fdfdfd;
    color: #1d1d1f;
}

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

/* Header */
.header {
    background-color: #fff;
    padding: 20px 0;
}

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

.logo {
    font-weight: bold;
    color: #224b98;
    font-size: 18px;
}

.nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #224b98;
    font-weight: 500;
}

.nav .btn {
    background-color: #224b98;
    color: white;
    padding: 10px 24px;
    border-radius: 10px;
}

/* Hero */
.hero {
    padding: 40px 0;
}

.hero-container {
    display: flex;
    gap: 40px;
    align-items: stretch;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    min-width: 300px;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
}

.hero-text {
    flex: 1;
    background-color: #224b98;
    color: white;
    padding: 40px;
    border-radius: 20px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text p {
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-text h1 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.4;
}

/* Адаптив */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
    }

    .hero-text {
        padding: 30px 20px;
    }

    .hero-text h1 {
        font-size: 22px;
    }
}

.strategy-thought {
    background-color: #f9fbfc;
    padding: 80px 20px;
}

.strategy-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.strategy-left {
    flex: 1;
    min-width: 280px;
    color: #224b98;
}

.strategy-left h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
}

.strategy-right {
    flex: 2;
    min-width: 280px;
    color: #224b98;
}

.strategy-right p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 15px;
}

/* Адаптив */
@media (max-width: 768px) {
    .strategy-container {
        flex-direction: column;
    }

    .strategy-left h2 {
        font-size: 24px;
        text-align: center;
    }

    .strategy-right p {
        font-size: 14px;
        text-align: justify;
    }
}

.gallery {
    background-color: #f9fbfc;
    padding: 60px 20px;
    text-align: center;
}

.gallery h2 {
    color: #224b98;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
}

.gallery-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-item {
    flex: 1 1 200px;
    max-width: 300px;
}

.gallery-item--large {
    flex: 1 1 400px;
    max-width: 500px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

/* Адаптив */
@media (max-width: 768px) {
    .gallery-grid {
        flex-direction: column;
        align-items: center;
    }

    .gallery-item,
    .gallery-item--large {
        max-width: 90%;
    }
    .nav {
        display: none;
    }
}

.services {
    background-color: #f9fbfc;
    padding: 80px 20px;
}

.services-title h2 {
    font-size: 32px;
    color: #224b98;
    margin-bottom: 40px;
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.service-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    color: #224b98;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 600px) {
    .services-title h2 {
        text-align: center;
        font-size: 24px;
    }

    .service-card {
        padding: 20px;
    }
}

.contact-section {
    background-color: #f9fbfc;
    padding: 60px 20px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
}

.contact-form {
    background-color: #224b98;
    border-radius: 10px;
    padding: 40px;
    flex: 1;
    min-width: 280px;
    color: white;
}

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

.contact-form label {
    font-weight: 500;
}

.contact-form input {
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
}

.contact-form button {
    align-self: flex-start;
    background-color: #fff;
    color: #224b98;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.contact-image {
    flex: 1;
    min-width: 280px;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Footer */
.footer {
    background-color: #224b98;
    color: white;
    padding: 40px 20px;
    font-size: 14px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-left {
    font-weight: bold;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 10px;
}

/* Адаптив */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-form button {
        width: 100%;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-container {
        align-items: center;
        text-align: center;
    }
}

.thank-you-page {
    min-height: 100vh;
    background-color: #f9fbf9;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
  }
  
  .thank-you-page h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
  }
  
  .thank-you-page p {
    font-size: 15px;
    margin-bottom: 30px;
    color: #333;
  }
  
  .btn-return {
    background-color: #224b98;
    color: white;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    text-decoration: none;
    display: inline-block;
  }
  
html {
    scroll-behavior: smooth !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: center;
    padding: 40px 20px;
    z-index: 9999;
  }
  
  .cookie-box {
    background-color: #f9fbf9;
    border-radius: 4px;
    padding: 30px;
    max-width: 1100px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }
  
  .cookie-text h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .cookie-text p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }
  
  .cookie-text a {
    color: #224b98;
    text-decoration: underline;
  }
  
  .cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .cookie-actions .accept {
    background-color: #224b98;
    color: white;
    font-weight: 600;
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 14px;
  }
  
  .cookie-actions .reject {
    background: none;
    border: none;
    font-size: 14px;
    color: #000;
    text-decoration: underline;
    cursor: pointer;
  }
  
  /* Адаптив */
  @media (max-width: 768px) {
    .cookie-box {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .cookie-actions {
      width: 100%;
      align-items: flex-start;
    }
  
    .cookie-actions .accept {
      width: 100%;
    }
  }
  