@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css');

:root {
  --primary-color: #FBB1F7;
  --secondary-color: #000000;
  --third-color: #111111;
  --text-primary: #FFFFFF;
  --text-secondary: #AAAAAA;
  --accent-primary: #740083;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Ubuntu', sans-serif;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/background.gif);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-primary);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--accent-primary);
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  transition: background 0.3s ease;
}

.navbar {
  background-color: var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
}

.navbar .logo img {
  height: 50px;
  align-items: center;
}

.navbar-menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.navbar-menu li a {
  color: var(--text-primary);
  font-size: 1.2rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

.navbar-menu li a:hover {
  color: var(--primary-color);
}

.navbar .auth-buttons {
  display: flex;
  gap: 10px;
}

.btn-login {
  background-color: var(--text-primary);
  color: var(--secondary-color);
  border: 2px solid var(--text-primary);
}

.btn-register {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
}

.btn-login:hover {
  background-color: transparent;
  color: var(--text-primary);
}

.btn-register:hover {
  background-color: var(--text-primary);
  color: var(--secondary-color);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Breadcrumbs */
.breadcrumbs {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px 0;
}

.breadcrumbs ol {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: var(--text-secondary);
  opacity: 0.5;
}

.breadcrumbs a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--primary-color);
}

.breadcrumbs li:last-child {
  color: var(--text-primary);
  font-weight: 500;
}

/* Section Label */
.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 15px;
}

/* Hero Section */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, rgba(116, 0, 131, 0.15) 0%, rgba(17, 17, 17, 0.9) 100%);
  padding: 60px 50px;
  margin-top: 20px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(251, 177, 247, 0.2);
  box-shadow: 0 10px 40px rgba(116, 0, 131, 0.3);
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(251, 177, 247, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(116, 0, 131, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(251, 177, 247, 0.2);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 25px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 30px;
  font-weight: 400;
}

.hero-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(116, 0, 131, 0.2);
  border: 1px solid rgba(251, 177, 247, 0.3);
  border-radius: 25px;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.hero-feature-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.hero-image {
  position: relative;
  z-index: 2;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

/* Contact Methods Section */
.contact-methods {
  margin-top: 60px;
  padding: 50px 40px;
  background: var(--secondary-color);
  border-radius: 20px;
  border: 2px solid rgba(251, 177, 247, 0.1);
}

.contact-methods-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-methods-header h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-methods-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-method-card {
  padding: 35px 25px;
  background: var(--third-color);
  border-radius: 15px;
  border: 1px solid rgba(251, 177, 247, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-method-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(116, 0, 131, 0.4);
}

.method-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-primary);
}

.contact-method-card h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.method-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 25px;
}

.method-details {
  text-align: left;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(116, 0, 131, 0.1);
  border-radius: 10px;
}

.method-details p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.6;
}

.method-details strong {
  color: var(--text-primary);
}

.method-cta {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  color: var(--text-primary);
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.method-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(116, 0, 131, 0.4);
}

/* Contact Form Section */
.contact-form-section {
  margin-top: 60px;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(116, 0, 131, 0.1) 0%, rgba(17, 17, 17, 0.8) 100%);
  border-radius: 20px;
  border: 1px solid rgba(251, 177, 247, 0.2);
}

.contact-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.form-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.contact-form {
  background: var(--secondary-color);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(251, 177, 247, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  background: var(--third-color);
  border: 1px solid rgba(251, 177, 247, 0.2);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: 'Ubuntu', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(251, 177, 247, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.checkbox-group label {
  margin: 0;
  font-size: 0.9rem;
  cursor: pointer;
}

.form-submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  color: var(--text-primary);
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(116, 0, 131, 0.4);
}

/* Support Info Section */
.support-info {
  margin-top: 60px;
  padding: 50px 40px;
  background: var(--secondary-color);
  border-radius: 20px;
  border: 2px solid rgba(251, 177, 247, 0.1);
}

.support-info-header {
  text-align: center;
  margin-bottom: 50px;
}

.support-info-header h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.support-info-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.support-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.info-card {
  padding: 35px 25px;
  background: var(--third-color);
  border-radius: 15px;
  border: 1px solid rgba(251, 177, 247, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(116, 0, 131, 0.3);
}

.info-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--text-primary);
}

.info-card h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.info-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.info-highlight {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(116, 0, 131, 0.2);
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Common Questions Section */
.common-questions {
  margin-top: 60px;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(116, 0, 131, 0.1) 100%);
  border-radius: 20px;
  border: 1px solid rgba(251, 177, 247, 0.2);
}

.common-questions-header {
  text-align: center;
  margin-bottom: 50px;
}

.common-questions-header h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.common-questions-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.questions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.question-card {
  padding: 30px;
  background: var(--secondary-color);
  border-radius: 15px;
  border: 1px solid rgba(251, 177, 247, 0.1);
  transition: all 0.3s ease;
}

.question-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(116, 0, 131, 0.3);
}

.question-card h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-weight: 600;
}

.question-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Before Contact Section */
.before-contact {
  margin-top: 60px;
  padding: 50px 40px;
  background: var(--secondary-color);
  border-radius: 20px;
  border: 2px solid rgba(251, 177, 247, 0.1);
}

.before-contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.before-contact-text h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 700;
}

.before-contact-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 25px;
}

.tips-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 12px 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.tips-list li i {
  color: var(--primary-color);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.tips-note {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-style: italic;
  padding: 15px;
  background: rgba(116, 0, 131, 0.1);
  border-radius: 10px;
  border-left: 3px solid var(--primary-color);
}

.before-contact-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.before-contact-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Social Media Section */
.social-media {
  margin-top: 60px;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(116, 0, 131, 0.1) 0%, rgba(17, 17, 17, 0.8) 100%);
  border-radius: 20px;
  border: 1px solid rgba(251, 177, 247, 0.2);
}

.social-media-header {
  text-align: center;
  margin-bottom: 50px;
}

.social-media-header h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.social-media-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.social-card {
  padding: 35px 25px;
  background: var(--secondary-color);
  border-radius: 15px;
  border: 1px solid rgba(251, 177, 247, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.social-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(116, 0, 131, 0.3);
}

.social-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--text-primary);
}

.social-card h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.social-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.social-link {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--accent-primary), var(--primary-color));
  color: var(--text-primary);
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(116, 0, 131, 0.4);
}

/* FAQ Section */
.faq {
  margin-top: 60px;
  padding: 50px 40px;
  background: var(--secondary-color);
  border-radius: 20px;
  border: 2px solid rgba(251, 177, 247, 0.1);
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.faq-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: var(--third-color);
  border-radius: 12px;
  padding: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(251, 177, 247, 0.1);
}

.faq-item:hover {
  border-color: var(--primary-color);
  background-color: rgba(116, 0, 131, 0.1);
}

.faq-item h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  position: relative;
  padding-right: 30px;
  font-weight: 600;
  line-height: 1.4;
}

.faq-item h4::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active h4::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
  opacity: 0;
  margin-top: 0;
}

.faq-item.active {
  background-color: rgba(116, 0, 131, 0.15);
}

.faq-item.active p {
  max-height: 500px;
  opacity: 1;
  margin-top: 15px;
}

/* Footer */
.footer {
  background-color: var(--secondary-color);
  padding: 40px 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(251, 177, 247, 0.1);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo img {
  height: 50px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

.footer-copy p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .navbar {
    padding: 20px 40px;
    flex-wrap: wrap;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .contact-methods-grid {
    grid-template-columns: 1fr;
  }

  .support-info-grid {
    grid-template-columns: 1fr;
  }

  .questions-grid {
    grid-template-columns: 1fr;
  }

  .before-contact-content {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .contact-methods,
  .contact-form-section,
  .support-info,
  .common-questions,
  .before-contact,
  .social-media,
  .faq {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .navbar .auth-buttons {
    margin-top: 10px;
    width: 100%;
    gap: 20px;
    justify-content: center;
  }

  .navbar-menu {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }

  .hero {
    padding: 30px 20px;
    gap: 30px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 10px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .contact-methods-header h2,
  .form-header h3,
  .support-info-header h3,
  .common-questions-header h3,
  .before-contact-text h3,
  .social-media-header h3,
  .faq-header h3 {
    font-size: 1.6rem;
  }

  .contact-methods,
  .contact-form-section,
  .support-info,
  .common-questions,
  .before-contact,
  .social-media,
  .faq {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 15px;
  }

  .hero {
    padding: 25px 15px;
    border-radius: 15px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-lead {
    font-size: 0.95rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 15px;
  }

  .section-label {
    font-size: 0.75rem;
    padding: 5px 12px;
  }

  .contact-methods-header h2,
  .form-header h3,
  .support-info-header h3,
  .common-questions-header h3,
  .before-contact-text h3,
  .social-media-header h3,
  .faq-header h3 {
    font-size: 1.4rem;
  }

  .contact-methods,
  .contact-form-section,
  .support-info,
  .common-questions,
  .before-contact,
  .social-media,
  .faq {
    padding: 25px 15px;
    border-radius: 15px;
  }

  .contact-method-card,
  .info-card,
  .question-card,
  .social-card {
    padding: 25px 20px;
  }

  .method-icon,
  .info-icon,
  .social-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .contact-form {
    padding: 25px 15px;
  }

  .faq-item {
    padding: 20px 15px;
  }

  .faq-item h4 {
    font-size: 1.1rem;
    padding-right: 25px;
  }

  .footer {
    padding: 30px 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}
