* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Georgia", serif;
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Grid overlay effect */
.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

/* ====== CENTERED HERO SECTION ====== */
.centered-hero {
  position: relative;
  background: linear-gradient(rgba(11, 15, 17, 0.8), rgba(11, 15, 17, 0.8)),
    url("/Assets/Images/nyc-about.jpg") center/cover no-repeat;
  padding: 40px 20px;
  text-align: center;
  color: #a9a9a9;
  min-height: 70vh;
  overflow: hidden;
}

.centered-hero .grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(208, 173, 61, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(208, 173, 61, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
}

.centered-hero .content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.centered-hero .highlight {
  color: #f5f5dc;
}

/* Container */
.centered-hero .container {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
}

/* Badge */
.badge {
  background: rgba(169, 169, 169, 0.4);
  border: 1px solid rgba(169, 169, 169, 0.4);
  color: #f5f5dc;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 25px;
}

/* Heading & Subtitle */
h1 {
  font-size: 3rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

.highlight {
  color: #d0ad3d;
}

.subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 40px;
}

/* Buttons */
.cta-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn {
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary {
  background: #d0ad3d;
  color: #0b0f11;
  box-shadow: 0 10px 30px rgba(184, 157, 102, 0.4);
}

.btn-primary:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(184, 157, 102, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* Stats Section */
.stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #d0ad3d;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1rem;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .stats {
    gap: 30px;
  }
}

.about-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 20px 20px;
  background: #0b0f11;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: #0b0f11;
  top: -200px;
  right: -200px;
  animation: float 20s infinite ease-in-out;
}

.about-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(
    135deg,
    rgba(118, 75, 162, 0.1),
    rgba(102, 126, 234, 0.1)
  );
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
  animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, 30px) scale(1.1);
  }
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  opacity: 0;
  animation: slideInLeft 1s ease forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-label {
  display: inline-block;
  color: #f5f5dc;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-left: 60px;
}

.about-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(135deg, #fff 0%, #f5f5dc 100%);
}

.about-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #a9a9a9;
  margin-bottom: 30px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.about-heading span {
  background: linear-gradient(135deg, #fff 0%, #f5f5dc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-description {
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.9;
  margin-bottom: 25px;
}

.about-description:last-of-type {
  margin-bottom: 40px;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(60deg, #808080 0%, #d3d3d3 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.about-cta:hover::before {
  left: 100%;
}

.about-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(169, 169, 169, 0.4);
}

.about-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.about-cta:hover svg {
  transform: translateX(5px);
}

.about-image-container {
  position: relative;
  opacity: 0;
  animation: slideInRight 1s ease 0.3s forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-image-container {
  position: relative;
  flex: 1;
  min-width: 400px;
  max-width: 550px;
}

.about-image {
  position: relative;
  width: 100%;
  height: 420px;
  background: url("/Assets/Images/about.jpg") center/cover no-repeat;
  /* change image path */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Optional overlay for richness */
.about-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 15, 17, 0.35);
  z-index: 1;
}

.decorative-dots {
  position: absolute;
  width: 100px;
  height: 100px;
  bottom: -30px;
  right: -30px;
  background-image: radial-gradient(circle, #667eea 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.3;
}

.decorative-shape {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 150px;
  height: 150px;
  border: 3px solid #667eea;
  border-radius: 30px;
  opacity: 0.2;
  z-index: -1;
}

/* Floating animation for decorative elements */
.decorative-shape {
  animation: floatShape 6s infinite ease-in-out;
}

@keyframes floatShape {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(20px, 20px) rotate(10deg);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-heading {
    font-size: 2.8rem;
  }

  .image-content {
    height: 500px;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px;
  }

  .about-heading {
    font-size: 2.2rem;
  }

  .about-description {
    font-size: 1.05rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-item {
    text-align: center;
  }

  .image-content {
    height: 400px;
  }

  .image-text h3 {
    font-size: 2rem;
  }

  .about-label {
    font-size: 0.85rem;
    padding-left: 50px;
  }

  .about-label::before {
    width: 40px;
  }
}

.why-choose-section {
  background: #0b0f11;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.why-choose-section .container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
}

.why-image img {
  width: 420px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.why-image img:hover {
  transform: translateY(-5px);
}

.why-content {
  flex: 1;
}

.why-heading {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #a9a9a9;
  line-height: 1.3;
}

.why-heading span {
  color: #d0ad3d;
}

.why-description {
  color: #fff;
  line-height: 1.7;
  margin-bottom: 35px;
  font-size: 1.05rem;
}

.stats-bar {
  display: flex;
  justify-content: space-between;
  background: linear-gradient(90deg, #0b0f11, #d0ad3d);
  color: #fff;
  border-radius: 12px;
  padding: 20px 35px;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  gap: 20px;
}

.stat {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat p {
  font-size: 0.95rem;
  opacity: 0.85;
}

.why-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn {
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.btn.primary {
  background: #d3d3d3;
  color: #fff;
}

.btn.primary:hover {
  background: #fff;
  color: #a9a9a9;
}

.btn.secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn.secondary:hover {
  background: #d3d3d3;
  color: #000;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Large tablets and small laptops */
@media (max-width: 1200px) {
  .why-choose-section .container {
    gap: 40px;
    padding: 0 30px;
  }

  .why-image img {
    width: 360px;
  }

  .why-heading {
    font-size: 2rem;
  }
}

/* Tablets (portrait) */
@media (max-width: 992px) {
  .why-choose-section .container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .why-image img {
    width: 70%;
    max-width: 350px;
  }

  .why-content {
    flex: none;
    width: 100%;
  }

  .stats-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
  }

  .stat {
    margin-bottom: 15px;
  }

  .why-buttons {
    justify-content: center;
  }
}

/* Mobile landscape */
@media (max-width: 768px) {
  .why-choose-section {
    padding: 70px 15px;
  }

  .why-heading {
    font-size: 1.8rem;
  }

  .why-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .btn {
    padding: 10px 22px;
    font-size: 0.95rem;
  }

  .stats-bar {
    padding: 20px;
  }

  .stat h3 {
    font-size: 1.6rem;
  }

  .stat p {
    font-size: 0.9rem;
  }
}

/* Mobile portrait (small devices) */
@media (max-width: 480px) {
  .why-choose-section {
    padding: 60px 10px;
  }

  .why-heading {
    font-size: 1.6rem;
  }

  .why-description {
    font-size: 0.95rem;
  }

  .why-image img {
    width: 100%;
    max-width: 300px;
  }

  .btn {
    width: 100%;
    padding: 12px;
  }

  .stats-bar {
    gap: 15px;
  }

  .stat h3 {
    font-size: 1.4rem;
  }

  .stat p {
    font-size: 0.85rem;
  }
}

.mission-vision-section {
  padding: 120px 20px;
  background: #0b0f11;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  color: #f5f5dc;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #a9a9a9;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.mv-card {
  background: #161e22;
  padding: 60px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #fff, #f5f5dc);
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: #808080;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(169, 169, 169, 0.4);
}

.mv-card h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 20px;
}

.mv-card p {
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.8;
}

/* Values Section */
.values-section {
  padding: 120px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.values-section .section-label {
  color: rgba(255, 255, 255, 0.9);
}

.values-section .section-title {
  color: white;
}

.values-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 50px 40px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  text-align: center;
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 25px;
  display: block;
}

.value-card h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.value-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.publishing-platforms {
  padding: 100px 0;
  background: #0b0f11;
  color: #a9a9a9;
  text-align: center;
}

.publishing-platforms .badge {
  display: inline-block;
  background: rgba(245, 245, 220, 0.4);
  color: #f5f5dc;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.publishing-platforms h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
}

.publishing-platforms h2 span {
  color: #d0ad3d;
}

.publishing-platforms p {
  max-width: 700px;
  margin: 0 auto 60px;
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
}

.platform-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.icon-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  min-width: 180px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.icon-card i {
  font-size: 48px;
  color: #fff;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.icon-card span {
  font-size: 16px;
  color: #ddd;
  font-weight: 500;
}

.icon-card:hover {
  transform: translateY(-8px);
  background: rgba(245, 245, 220, 0.1);
  box-shadow: 0 10px 25px rgba(245, 245, 220, 0.25);
}

.icon-card:hover i {
  color: #f5f5dc;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }

  .footer-company {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-main {
    padding: 60px 20px 30px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 15px;
  }

  .trust-badges {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .visual-area {
    display: none;
  }
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
  z-index: 1000;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

/* Base hero adjustments for small screens */
@media (max-width: 1200px) {
  .centered-hero h1 {
    font-size: 2.5rem;
  }

  .centered-hero .subtitle {
    font-size: 1rem;
  }

  .cta-group {
    gap: 10px;
  }
}

/* Tablet screens */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    display: block;
  }

  .about-image-container,
  .why-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .platform-icons {
    gap: 20px;
  }
}

/* Small tablets / large mobile */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .about-heading {
    font-size: 2rem;
  }

  .about-description,
  .why-description,
  .section-subtitle {
    font-size: 1rem;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .mv-card {
    padding: 40px 30px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .cta-group {
    flex-direction: column;
    gap: 10px;
  }
}

/* Mobile screens */
@media (max-width: 576px) {
  .centered-hero {
    padding: 30px 15px;
  }

  .about-section {
    padding: 40px 15px;
  }

  .why-choose-section {
    padding: 60px 15px;
    flex-direction: column;
    gap: 30px;
  }

  .mv-card {
    padding: 30px 20px;
  }

  .platform-icons {
    flex-direction: column;
    gap: 20px;
  }

  h1 {
    font-size: 1.8rem;
  }

  .about-heading,
  .why-heading,
  .section-title {
    font-size: 1.8rem;
  }

  .values-section {
    padding: 60px 15px;
  }

  .badge {
    padding: 6px 15px;
    font-size: 0.8rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .about-cta {
    padding: 12px 30px;
    font-size: 0.9rem;
  }

  .mv-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .value-card {
    padding: 30px 20px;
  }
}

/* Extra small screens (very small phones) */
@media (max-width: 400px) {
  h1 {
    font-size: 1.5rem;
  }

  .about-heading,
  .why-heading,
  .section-title {
    font-size: 1.5rem;
  }

  .subtitle,
  .about-description,
  .why-description,
  .section-subtitle {
    font-size: 0.95rem;
  }

  .cta-group {
    gap: 8px;
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .mv-card {
    padding: 20px 15px;
  }

  .value-card {
    padding: 20px 15px;
  }
}

.faq-section {
  background: #0b0f11;
  padding: 80px 20px;
  width: 100%;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
  color: white;
}

.faq-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.faq-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 28px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2d3748;
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: #808080;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-icon::after {
  content: "+";
  color: white;
  font-size: 24px;
  font-weight: 300;
}

.faq-item.faq-active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.faq-active .faq-answer {
  max-height: 500px;
  padding: 0 30px 28px 30px;
}

.faq-answer-text {
  color: #4a5568;
  line-height: 1.8;
  font-size: 1rem;
}

/* Tablet devices */
@media (max-width: 1024px) {
  .faq-section {
    padding: 60px 15px;
  }

  .faq-container {
    max-width: 750px;
  }

  .faq-header h1 {
    font-size: 2.5rem;
  }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
  .faq-container {
    max-width: 100%;
  }

  .faq-header {
    margin-bottom: 40px;
  }

  .faq-header h1 {
    font-size: 2rem;
  }

  .faq-header p {
    font-size: 1rem;
  }

  .faq-question {
    padding: 20px 18px;
  }

  .faq-question-text {
    font-size: 1rem;
    padding-right: 15px;
  }

  .faq-item.faq-active .faq-answer {
    padding: 0 18px 20px 18px;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
  }

  .faq-icon::after {
    font-size: 20px;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .faq-section {
    padding: 40px 10px;
  }

  .faq-header h1 {
    font-size: 1.75rem;
    margin-bottom: 10px;
  }

  .faq-header p {
    font-size: 0.95rem;
  }

  .faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
  }

  .faq-question {
    padding: 18px 15px;
  }

  .faq-question-text {
    font-size: 0.95rem;
    padding-right: 12px;
    line-height: 1.4;
  }

  .faq-answer-text {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .faq-item.faq-active .faq-answer {
    padding: 0 15px 18px 15px;
  }

  .faq-icon {
    width: 26px;
    height: 26px;
  }

  .faq-icon::after {
    font-size: 18px;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .faq-header h1 {
    font-size: 1.5rem;
  }

  .faq-question-text {
    font-size: 0.9rem;
  }

  .faq-answer-text {
    font-size: 0.85rem;
  }
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #081629;
  padding: 40px 30px;
  border: 2px solid #d0ad3d;
  border-radius: 12px;
  z-index: 1000;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(208, 173, 61, 0.5);
  text-align: center;
}

.popup.active {
  display: block;
}

.popup h2 {
  margin-bottom: 20px;
  color: #d0ad3d;
}

.popup form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popup input,
.popup textarea {
  padding: 10px;
  border: 1px solid #d0ad3d;
  border-radius: 5px;
  background-color: #0b0f11;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border 0.3s ease;
}

.popup input:focus,
.popup textarea:focus {
  border-color: #fff;
}

.popup textarea {
  resize: none;
  height: 80px;
}

.popup button.submit {
  background-color: #d0ad3d;
  color: #081629;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.popup button.submit:hover {
  background-color: #b8922f;
}

/* Close icon */
.popup .close-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #d0ad3d;
  font-size: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.3s ease;
}

.popup .close-icon:hover {
  color: #fff;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 15, 17, 0.7);
  z-index: 500;
}

.overlay.active {
  display: block;
}
