:root {
  --primary: #0d5c63;
  --accent: #1bb3a9;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #f8fafc;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

/* HEADER */
.header {
  background: #0a0a23;
  color: white;
  padding: 20px 30px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.logo {
  font-weight: 700;
  font-size: 22px;
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

/* MENU BUTTON */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #0a0a23;
    width: 200px;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    display: none;
    border-radius: 10px;
  }

  .nav-links.active {
    display: flex;
  }
}

/* MAIN LAYOUT */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* FAQ LEFT */
.section-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
  color:#00a8cc;

}

.faq-group {
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  cursor: pointer;
}

/* ✅ BLOCK VERSION (NO FLEX) */
.faq-question {
  display: block;
  position: relative;
  font-weight: 600;
  line-height: 1.5;
  padding-right: 35px; /* space for + */
}

/* LEFT TEXT (arrow + text) */
.faq-left,
.faq-row {
  display: block;
}

/* ARROW */
.arrow {
  color: var(--accent);
  margin-right: 8px;
}

/* + ICON */
.icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--accent);
  transition: 0.3s;
}

.faq-item.active .icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: white;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: var(--muted);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 10px;
}

/* RIGHT SIDE */
.right {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  position: sticky;
  top: 40px;
}

.right small {
   color:#00a8cc;
  font-weight: 600;
}

.right h2 {
  margin: 10px 0 15px;
}

.right p {
  color: var(--muted);
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  background :#00a8cc ;
  color: white;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
}

.info {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .container {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .right {
    position: static;
  }
}


.footer{
    width:100%;
    background:#0b4f66;
    color:white;
    padding:60px 8% 20px;
    box-sizing:border-box;
     margin-top: 80px;
}

/* CONTAINER */
.footer-container{
    display:flex;
    justify-content:space-between;
    gap:40px;
}

/* COLUMNS */
.footer-col{
    width:30%;
}

/* LEFT TITLE */
.footer-col h2{
    font-size:30px;
    margin-bottom:15px;
}

.footer-col h2 span{
    color:#00c6d7;
}

/* HEADINGS */
.footer-col h3{
    margin-bottom:15px;
}

/* TEXT */
.footer-col p{
    font-size:14px;
    line-height:1.6;
    margin-bottom:15px;
    color:#dbe7ee;
}

/* LIST */
.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin-bottom:10px;
    font-size:14px;
    color:#dbe7ee;
    position:relative;
    padding-left:15px;
}

/* DASH BEFORE LINKS */
.footer-col ul li::before{
    content:"-";
    position:absolute;
    left:0;
    color:#00c6d7;
}

/* BOTTOM */
.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:40px;
    border-top:1px solid rgba(255,255,255,0.2);
    padding-top:20px;
}

/* LINKS */
.footer-links a{
    color:#00c6d7;
    text-decoration:none;
    font-size:14px;
}

.footer-links span{
    margin:0 8px;
}

