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

body {
  font-family: "Inter", sans-serif;
  background: #f9fafc;
  color: #1c1f26;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.cp-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.cp-cards {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.cp-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px 20px;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.cp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.cp-card h3 {
  font-size: 1.5rem;
  color: #1a4ba3;
  margin-bottom: 12px;
  font-weight: 700;
}

.cp-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.cp-btn.cp-btn-small {
  display: inline-block;
  background: #1a4ba3;
  color: #fff;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s;
}

.cp-btn.cp-btn-small:hover {
  background: #0e316d;
  transform: scale(1.05);
}
/* ===== Header ===== */
.cp-header {
  background: #0a1b33;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.cp-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
}

.cp-logo img {
  height: 32px;
}

.cp-nav {
  display: flex;
  gap: 25px;
}

.cp-nav a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.cp-nav a:hover {
  color: #ffd700;
}

/* Burger */
.cp-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.cp-burger span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}

/* ===== Hero ===== */
.cp-hero {
  background: linear-gradient(135deg, #0a1b33, #142d50);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.cp-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cp-hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #e0e6f1;
}

.cp-btn-primary {
  display: inline-block;
  background: #ffd700;
  color: #0a1b33;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.cp-btn-primary:hover {
  background: #e6c200;
}

/* ===== Offers ===== */
.cp-offers {
  padding: 80px 0;
  background: #f9fafc;
}

.cp-section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #1a4ba3;
  font-weight: 700;
}

.cp-offer-card.fr-offer-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border-radius: 25px;
  padding: 30px 40px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  gap: 30px;
}

.cp-offer-card.fr-offer-wide:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.cp-offer-left {
  display: flex;
  align-items: center;
  gap: 25px;
  flex: 1;
}

.cp-offer-logo-wrapper {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  background: #f0f4ff;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  transition: transform 0.3s;
}

.cp-offer-card.fr-offer-wide:hover .cp-offer-logo-wrapper {
  transform: scale(1.05);
}

.cp-offer-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cp-offer-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cp-offer-title {
  font-size: 1.9rem;
  color: #1a4ba3;
  font-weight: 700;
}

.cp-offer-subtitle {
  font-size: 1.15rem;
  color: #555;
}

.cp-offer-rating {
  font-size: 1.4rem;
}

.cp-offer-payments {
  display: flex;
  gap: 15px;
  font-weight: 600;
  color: #d4a017;
  margin-top: 6px;
}

.cp-offer-right {
  flex-shrink: 0;
}

.cp-btn-offer {
  display: inline-block;
  padding: 16px 40px;
  background: #1a4ba3;
  color: #fff;
  font-size: 1.15rem;
  border-radius: 15px;
  font-weight: 700;
  transition: all 0.3s;
  text-align: center;
}

.cp-btn-offer:hover {
  background: #0e316d;
  transform: scale(1.05);
}

.cp-offer-description-block {
  margin-top: 25px;
  background: #f4f7ff;
  border-radius: 20px;
  padding: 25px 30px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.cp-offer-description-block h4 {
  margin-bottom: 15px;
  color: #1a4ba3;
  font-size: 1.4rem;
  font-weight: 700;
}

/* ===== About ===== */
.cp-about {
  padding: 80px 0;
  background: #f9fafc;
}

.cp-about-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.cp-about-text {
  flex: 1 1 400px;
}

.cp-about-text h2 {
  font-size: 2rem;
  color: #1a4ba3;
  margin-bottom: 20px;
}

.cp-about-text p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.6;
}

.cp-about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cp-about-list li {
  font-size: 1rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Image */
.cp-about-image {
  flex: 1 1 400px;
  text-align: center;
}

.cp-about-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* ===== FAQ ===== */
.cp-faq {
  padding: 80px 20px;
  background: #f4f6fa;
}

.cp-faq h2.cp-section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #1a4ba3;
}

.cp-faq-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.cp-faq-column {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cp-faq-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cp-faq-question {
  width: 100%;
  background: #1a4ba3;
  color: #fff;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.cp-faq-question:hover {
  background: #0e316d;
}

.cp-faq-icon {
  font-size: 1.4rem;
  transition: transform 0.3s;
}

.cp-faq-item.active .cp-faq-icon {
  transform: rotate(45deg);
}

.cp-faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
}

.cp-faq-item.active .cp-faq-answer {
  max-height: 500px; /* достаточно для текста */
  padding: 15px 20px;
}

.cp-faq-answer p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

/* ===== Contact ===== */
.cp-contact {
  padding: 80px 20px;
  background: #e8f0ff;
  border-top: 1px solid #d1d5de;
}

.cp-contact-flex {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cp-contact-info,
.cp-contact-form {
  flex: 1 1 400px;
  background: #fff;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.cp-contact-info:hover,
.cp-contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.cp-contact h2.cp-section-title {
  margin-bottom: 20px;
  color: #1a4ba3;
  font-size: 1.8rem;
}

.cp-contact p {
  margin-bottom: 15px;
  color: #333;
  line-height: 1.6;
}

.cp-contact ul {
  list-style: none;
  padding: 0;
}

.cp-contact ul li {
  margin-bottom: 10px;
  font-weight: 500;
  color: #0a1b33;
}

.cp-contact ul li a {
  color: #1a4ba3;
  text-decoration: none;
  transition: color 0.3s;
}

.cp-contact ul li a:hover {
  color: #ffd700;
}

/* Форма */
.cp-contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cp-contact-form input,
.cp-contact-form textarea {
  padding: 14px 16px;
  border: 1px solid #d1d5de;
  border-radius: 10px;
  font-size: 1rem;
  transition: border 0.3s, box-shadow 0.3s;
}

.cp-contact-form input:focus,
.cp-contact-form textarea:focus {
  border-color: #1a4ba3;
  box-shadow: 0 0 8px rgba(26,75,163,0.2);
  outline: none;
}

.cp-contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.cp-btn.cp-btn-primary {
  background: #1a4ba3;
  color: #fff;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s;
}

.cp-btn.cp-btn-primary:hover {
  background: #0e316d;
  transform: translateY(-2px);
}
/* ===== Footer ===== */
.cp-footer {
  background: #0a1b33;
  color: #fff;
  padding: 25px 0;
  text-align: center;
}

.cp-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.cp-footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #ffd700;
}

.cp-footer-logo img {
  height: 28px;
}

.cp-footer-logos {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.cp-footer-logos img {
  height: 30px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.3s;
}

.cp-footer-logos img:hover {
  opacity: 1;
}
.cp-parallax-warning {
  position: relative;
  background-image: url('../img/parallax-bg.jpg'); /* замените на своё изображение */
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cp-parallax-overlay {
  background: rgba(0, 26, 51, 0.6); /* тёмный прозрачный слой для читаемости текста */
  width: 100%;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cp-warning-text {
  max-width: 900px;
  text-align: center;
  border: 3px solid #ffd700; /* золотистая рамка */
  padding: 40px 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.cp-warning-text p {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.6;
}
.cp-footer-middle {
  padding: 20px 0;
  border-top: 1px solid #e5e5e5;
  text-align: center;
}

.cp-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cp-footer-links li {
  display: inline-block;
  margin: 0 10px;
}

.cp-footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.cp-footer-links a:hover {
  color: #fff;
}

.cp-footer-contact {
  margin-top: 10px;
  font-size: 14px;
  color: #888;
}

.cp-footer-contact a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cp-footer-contact a:hover {
  color: #fff;
}
.cf-guide {
  padding: 80px 0;
  background-color: #f9f9f9;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
}

.cf-guide .cf-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.cf-guide-intro {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 50px;
  color: #222;
}

.cf-guide-block {
  margin-bottom: 40px;
  padding: 25px 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cf-guide-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}
.ob-banner {
    background-color: #fff;
    color: #000;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
}
.cf-guide-block h2 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #1a4ba3;
}

.cf-guide-block p {
  line-height: 1.6;
  font-size: 1rem;
  color: #333;
}

.cf-guide-list {
  list-style: disc inside;
  margin: 15px 0;
  padding-left: 20px;
}

.cf-guide-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #555;
}

.cf-guide-block.final {
  border-left: 4px solid #1a4ba3;
}
/* ===== Responsive ===== */
@media (max-width: 992px) {
  .cp-contact-flex {
    flex-direction: column;
    gap: 30px;
  }
  .cp-warning-text p {
    font-size: 1.2rem;
  }
  .cp-faq-grid {
    flex-direction: column;
    gap: 30px;
  }

  .cp-parallax-warning {
    padding: 80px 10px;
  }

  .cp-parallax-overlay {
    padding: 60px 10px;
  }

  .cp-about-flex {
    flex-direction: column-reverse;
    text-align: center;
  }
  
  .cp-about-text, 
  .cp-about-image {
    flex: 1 1 100%;
  }

  .cp-about-list {
    align-items: center;
  }
  .cp-cards {
    gap: 20px;
  }
  .cp-offer-card.fr-offer-wide {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 25px 20px;
  }

  .cp-offer-left {
    flex-direction: column;
    gap: 15px;
  }

  .cp-offer-logo-wrapper {
    width: 120px;
    height: 120px;
  }

  .cp-btn-offer {
    font-size: 12px;
    width: 100%;
    padding: 14px 10px;
  }
}

@media (max-width: 768px) {
  .cp-nav {
    display: none;
    flex-direction: column;
    background: #0a1b33;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 15px;
    border-radius: 6px;
  }.cp-warning-text p {
    font-size: 1rem;
  }

  .cp-nav.active {
    display: flex;
  }

  .cp-burger {
    display: flex;
  }

  .cp-hero h1 {
    font-size: 2rem;
  }

  .cp-hero p {
    font-size: 1rem;
  }
  .cp-offer-title {
    font-size: 1.6rem;
  }

  .cp-offer-subtitle {
    font-size: 1rem;
  }

  .cp-offer-description-block {
    padding: 20px 15px;
  }
   .cp-card {
    padding: 20px 15px;
  }
}
