/* Passport table */
.passport-table { width:100%; border-collapse:collapse; margin:20px 0 30px;
  background:linear-gradient(135deg, rgba(24,29,45,.6), rgba(35,42,66,.6));
  border-radius:14px; overflow:hidden; }
.passport-table th, .passport-table td { padding:14px 18px; text-align:left;
  border-bottom:1px solid rgba(118,254,223,.12); color:#e7ecf5; font-size:15px; }
.passport-table th { background:rgba(118,254,223,.08); color:#76fedf;
  font-weight:600; width:38%; }
.passport-table tr:last-child td, .passport-table tr:last-child th { border-bottom:0; }

/* Reviews block */
.reviews-section { padding:60px 0 40px;
  background:linear-gradient(180deg, rgba(15,20,35,.4) 0%, rgba(24,29,45,.7) 100%);
  border-radius:18px; margin:40px 0; padding:50px 24px; }
.reviews-section h2 { text-align:center; color:#76fedf; font-size:28px;
  margin-bottom:8px; }
.reviews-subtitle { text-align:center; color:#a4b0c8; margin-bottom:36px;
  font-size:15px; }
.reviews-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:20px; }
@media (max-width:900px) { .reviews-grid { grid-template-columns:repeat(2, 1fr); } }
@media (max-width:600px) { .reviews-grid { grid-template-columns:1fr; } }
.review-card { background:linear-gradient(135deg, #1b2136 0%, #262d47 100%);
  border-radius:14px; padding:22px; box-shadow:0 6px 20px rgba(0,0,0,.35);
  transition:transform .2s ease, box-shadow .2s ease; border:1px solid rgba(118,254,223,.08); }
.review-card:hover { transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,.5); border-color:rgba(118,254,223,.25); }
.review-head { display:flex; align-items:center; gap:14px; margin-bottom:12px; }
.review-avatar { width:48px; height:48px; border-radius:50%;
  background:linear-gradient(135deg, #76fedf, #2fb8a3); color:#0f1423;
  font-weight:700; display:flex; align-items:center; justify-content:center;
  font-size:18px; flex-shrink:0; }
.review-meta { display:flex; flex-direction:column; }
.review-name { color:#e7ecf5; font-weight:600; font-size:15px; }
.review-loc { color:#8a94ac; font-size:13px; }
.review-stars { color:#ffd54f; margin-bottom:10px; letter-spacing:2px; font-size:15px; }
.review-text { color:#c8cfe0; font-size:14px; line-height:1.5; font-style:italic; }

/* FAQ */
.faq-section { padding:40px 0; }
.faq-section h2 { color:#76fedf; text-align:center; margin-bottom:30px; font-size:26px; }
.faq-item { background:rgba(27,33,54,.6); border-radius:10px; margin-bottom:12px;
  border:1px solid rgba(118,254,223,.08); overflow:hidden; }
.faq-q { padding:18px 22px; color:#e7ecf5; font-weight:600; cursor:pointer;
  position:relative; padding-right:50px; font-size:16px; user-select:none; }
.faq-q::after { content:'+'; position:absolute; right:22px; top:50%;
  transform:translateY(-50%); color:#76fedf; font-size:22px; transition:transform .2s; }
.faq-item.open .faq-q::after { content:'−'; }
.faq-a { max-height:0; overflow:hidden; padding:0 22px; color:#c8cfe0;
  font-size:15px; line-height:1.6; transition:max-height .3s ease, padding .3s ease; }
.faq-item.open .faq-a { max-height:600px; padding:0 22px 18px; }

/* Legal pages */
.legal-page { max-width:900px; margin:0 auto; padding:40px 20px;
  color:#e7ecf5; line-height:1.7; }
.legal-page h1 { color:#76fedf; margin-bottom:24px; font-size:32px; }
.legal-page h2 { color:#76fedf; margin-top:32px; margin-bottom:14px; font-size:22px; }
.legal-page h3 { color:#a4d8cc; margin-top:22px; margin-bottom:10px; font-size:18px; }
.legal-page p, .legal-page li { color:#c8cfe0; font-size:15px; }
.legal-page ul { padding-left:24px; margin:12px 0; }
.legal-page a { color:#76fedf; text-decoration:underline; }

/* Contact form */
.contact-form { max-width:640px; margin:24px 0; display:flex; flex-direction:column;
  gap:14px; background:rgba(27,33,54,.5); padding:24px; border-radius:12px; }
.contact-form label { color:#a4b0c8; font-size:14px; }
.contact-form input, .contact-form textarea { padding:12px 14px;
  background:#0f1423; border:1px solid rgba(118,254,223,.2); border-radius:8px;
  color:#e7ecf5; font-family:inherit; font-size:15px; }
.contact-form textarea { min-height:140px; resize:vertical; }
.contact-form button { padding:14px 22px; background:linear-gradient(135deg,#76fedf,#2fb8a3);
  color:#0f1423; border:0; border-radius:8px; font-weight:700; cursor:pointer;
  font-size:15px; }

/* Footer legal block */
.footer-legal { display:flex; flex-wrap:wrap; gap:16px; justify-content:center;
  padding:14px 0; margin-top:10px; border-top:1px solid rgba(255,255,255,.06); }
.footer-legal a { color:#8a94ac; font-size:13px; text-decoration:none; }
.footer-legal a:hover { color:#76fedf; }
