/* --- GLOBAL STYLES - CONSISTENT WITH OTHER PAGES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #07182f 0%, #0d2b4e 100%);
  color: #fff;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* --- LOADER STYLES - CONSISTENT --- */
#qaruno-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 24, 47, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-bg {
  text-align: center;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(0, 181, 200, 0.3);
  border-top: 4px solid #00b5c8;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1.5rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-brand {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 0.5rem;
}

.loader-msg {
  color: #00b5c8;
  font-size: 1.1rem;
  font-weight: 500;
}

/* --- COOKIE BANNER STYLES - CONSISTENT --- */
#cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 380px;
  background: rgba(7, 24, 47, 0.95);
  border: 2px solid #00b5c8;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 181, 200, 0.2);
  z-index: 10000;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: none;
}

#cookie-banner.minimized {
  width: 60px;
  height: 60px;
  padding: 0;
  overflow: hidden;
  bottom: 1rem;
  left: 1rem;
}

#cookie-banner.minimized .cookie-content {
  display: none;
}

.cookie-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.cookie-title {
  color: #FFD700;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.cookie-close {
  background: none;
  border: none;
  color: #00b5c8;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.2rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-close:hover {
  background: rgba(0, 181, 200, 0.1);
  transform: scale(1.1);
}

.cookie-message {
  color: #cceff5;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #00b5c8;
  text-decoration: none;
  flex: 1;
  text-align: center;
}

.cookie-btn.accept {
  background: #00b5c8;
  color: white;
}

.cookie-btn.accept:hover {
  background: #008aa5;
  border-color: #008aa5;
}

.cookie-btn.settings {
  background: transparent;
  color: #00b5c8;
}

.cookie-btn.settings:hover {
  background: rgba(0, 181, 200, 0.1);
}

.cookie-icon {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #00b5c8;
  font-size: 1.5rem;
}

#cookie-banner.minimized .cookie-icon {
  display: flex;
}

/* --- HEADER STYLES - CONSISTENT --- */
header {
  background: rgba(7, 24, 47, 0.95);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  backdrop-filter: blur(5px);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- NAV LOGO WITH IMAGE + TEXT (CONSISTENT) --- */
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.3rem 0;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
}

.nav-logo-text {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.nav-logo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #00b5c8);
  transition: width 0.3s ease;
}

.nav-logo:hover::after {
  width: 100%;
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.5));
}

.nav-logo:hover .nav-logo-text {
  filter: brightness(1.2);
  transform: translateX(3px);
}

.nav-logo:hover {
  transform: translateY(-2px);
}

/* --- NAV BUTTON STYLES - CONSISTENT --- */
nav {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-btn, .nav-btn-login {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 0.5rem 1.45rem;
  font-size: 1.05rem;
  border-radius: 2rem;
  border: 2px solid #00b5c8;
  background: transparent;
  color: #00b5c8;
  margin-left: 1.15rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-btn:hover, .nav-btn:focus {
  background: rgba(0, 181, 200, 0.1);
  color: #00b5c8;
  border-color: #00b5c8;
}

.nav-btn-login {
  background: #00b5c8;
  color: #fff;
  border: 2px solid #00b5c8;
  font-weight: 700;
}

.nav-btn-login:hover, .nav-btn-login:focus {
  background: #008aa5;
  color: #fff;
  border-color: #008aa5;
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  background: rgba(0, 181, 200, 0.1);
  border: 2px solid #00b5c8;
  border-radius: 0.6rem;
  font-size: 1.3rem;
  color: #00b5c8;
  cursor: pointer;
  padding: 0.6rem 0.9rem;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(0, 181, 200, 0.2);
  transform: scale(1.05);
}

.menu-toggle:active {
  transform: scale(0.95);
}

/* --- MAIN CONTENT STYLES --- */
main {
  flex: 1 0 auto;
}

/* --- CONTACT HERO SECTION - ARTISTIC DESIGN --- */
.contact-hero {
  background: linear-gradient(135deg, rgba(234, 253, 255, 0.1) 0%, rgba(0, 181, 200, 0.05) 100%);
  padding: 6rem 0 4rem 0;
  text-align: center;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 181, 200, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-shadow: 0 4px 12px rgba(0,0,0,0.4);
  line-height: 1.1;
  position: relative;
  z-index: 2;
}

.hero-content p {
  max-width: 700px;
  margin: 0 auto 3rem auto;
  font-size: 1.35rem;
  color: #cceff5;
  font-weight: 500;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* Floating Elements Animation */
.hero-illustration {
  position: relative;
  height: 200px;
  margin: 2rem auto;
  max-width: 600px;
}

.floating-element {
  position: absolute;
  font-size: 3rem;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.element-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.element-2 {
  top: 10%;
  right: 15%;
  animation-delay: 1.5s;
}

.element-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 3s;
}

.element-4 {
  bottom: 20%;
  right: 10%;
  animation-delay: 4.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* --- CONTACT CHANNELS SECTION --- */
.contact-channels {
  padding: 5rem 0;
  background: rgba(248, 249, 250, 0.03);
}

.contact-channels h2 {
  text-align: center;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.section-intro {
  text-align: center;
  color: #cceff5;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}

/* Channels Grid */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.channel-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1.8rem;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 2px solid rgba(0, 181, 200, 0.2);
  backdrop-filter: blur(15px);
  overflow: hidden;
}

.channel-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 181, 200, 0.1) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease;
}

.channel-card:hover::before {
  transform: scale(1);
}

.channel-card:hover {
  box-shadow: 0 16px 48px rgba(0,181,200,0.25);
  transform: translateY(-12px) scale(1.02);
  border-color: #00b5c8;
  background: rgba(255, 255, 255, 0.1);
}

/* Channel-specific colors */
.channel-card.support:hover {
  border-color: #00b5c8;
  box-shadow: 0 16px 48px rgba(0,181,200,0.3);
}

.channel-card.feedback:hover {
  border-color: #FFD700;
  box-shadow: 0 16px 48px rgba(255,215,0,0.3);
}

.channel-card.info:hover {
  border-color: #ff6b6b;
  box-shadow: 0 16px 48px rgba(255,107,107,0.3);
}

.channel-card.partnership:hover {
  border-color: #a8e6cf;
  box-shadow: 0 16px 48px rgba(168,230,207,0.3);
}

.channel-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.channel-card.support .channel-icon {
  color: #00b5c8;
}

.channel-card.feedback .channel-icon {
  color: #FFD700;
}

.channel-card.info .channel-icon {
  color: #ff6b6b;
}

.channel-card.partnership .channel-icon {
  color: #a8e6cf;
}

.channel-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  position: relative;
  z-index: 2;
}

.channel-content p {
  color: #cceff5;
  font-size: 1.12rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.channel-details {
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.response-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #FFD700;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.best-for {
  color: #cceff5;
  font-size: 0.9rem;
  line-height: 1.4;
}

.channel-email {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #00b5c8 0%, #008aa5 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 2.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(0,181,200,0.4);
}

.channel-email:hover {
  background: linear-gradient(135deg, #008aa5 0%, #006f87 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,181,200,0.6);
}

/* --- QUICK TIPS SECTION --- */
.quick-tips {
  padding: 5rem 0;
  background: rgba(234, 253, 255, 0.05);
}

.quick-tips h2 {
  text-align: center;
  color: #FFD700;
  font-size: 2.6rem;
  margin-bottom: 3rem;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.tip-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.tip-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 181, 200, 0.4);
  box-shadow: 0 12px 32px rgba(0, 181, 200, 0.2);
}

.tip-number {
  background: linear-gradient(135deg, #00b5c8 0%, #008aa5 100%);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 4px 15px rgba(0, 181, 200, 0.4);
}

.tip-content h4 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.tip-content p {
  color: #cceff5;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

/* --- FAQ PREVIEW SECTION --- */
.faq-preview {
  padding: 5rem 0;
  background: rgba(248, 249, 250, 0.03);
}

.faq-preview h2 {
  text-align: center;
  color: #FFD700;
  font-size: 2.6rem;
  margin-bottom: 1rem;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.faq-item:hover {
  border-color: rgba(0, 181, 200, 0.4);
  box-shadow: 0 8px 25px rgba(0, 181, 200, 0.15);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.faq-question i {
  font-size: 1.5rem;
  color: #00b5c8;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.faq-question h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
}

.faq-answer p {
  color: #cceff5;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  padding-left: 2.5rem;
}

.more-help {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 1rem;
  border-left: 4px solid #FFD700;
}

.more-help p {
  color: #cceff5;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

/* --- COMMUNITY SECTION --- */
.community-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(234, 253, 255, 0.1) 0%, rgba(0, 181, 200, 0.05) 100%);
}

.community-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.community-text h2 {
  color: #FFD700;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.community-text p {
  color: #cceff5;
  font-size: 1.18rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.community-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.community-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #cceff5;
  font-size: 1.1rem;
  font-weight: 600;
}

.community-feature i {
  color: #00b5c8;
  font-size: 1.3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #00b5c8 0%, #008aa5 100%);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 2.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,181,200,0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #008aa5 0%, #006f87 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,181,200,0.6);
}

/* Community Visual - Floating Students */
.community-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 300px;
}

.floating-students {
  position: relative;
  width: 100%;
  height: 100%;
}

.student-avatar {
  position: absolute;
  font-size: 3rem;
  animation: floatStudent 8s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.avatar-1 {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.avatar-2 {
  top: 30%;
  right: 25%;
  animation-delay: 1s;
}

.avatar-3 {
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}

.avatar-4 {
  bottom: 10%;
  right: 20%;
  animation-delay: 3s;
}

.avatar-5 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
  font-size: 4rem;
}

@keyframes floatStudent {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-15px) rotate(3deg) scale(1.05);
  }
  50% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  75% {
    transform: translateY(-10px) rotate(-3deg) scale(1.03);
  }
}

/* --- FOOTER STYLES - CONSISTENT --- */
footer {
  background: rgba(7, 24, 47, 0.9);
  color: #fff;
  padding: 3rem 0 2rem 0;
  text-align: center;
  flex-shrink: 0;
  backdrop-filter: blur(5px);
  border-top: 1px solid rgba(0, 181, 200, 0.2);
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
}

.footer-logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFD700;
}

/* DESKTOP: All links in one line */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #00b5c8;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FFD700, #00b5c8);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links a:hover {
  color: #FFD700;
  transform: translateY(-2px);
}

.footer-copyright {
  font-size: 0.95rem;
  color: #cceff5;
  margin-top: 1rem;
}

/* --- BACK TO TOP BUTTON STYLES - CONSISTENT --- */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00b5c8 0%, #008aa5 100%);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,181,200,0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#backToTop:hover {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(255,215,0,0.4);
}

/* --- MEDIA QUERIES - MOBILE FIRST APPROACH --- */
@media (max-width: 900px) {
  .contact-hero h1 {
    font-size: 2.8rem;
  }
  
  .contact-hero p {
    font-size: 1.25rem;
  }
  
  .channels-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
  }
  
  .channel-card {
    padding: 2.5rem 2rem;
  }
  
  .community-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .community-visual {
    height: 250px;
  }
  
  .tips-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    width: 100%;
  }
  
  .container {
    width: 100%;
    padding: 0 1rem;
  }
  
  /* Mobile menu styles */
  .menu-toggle {
    display: block;
  }
  
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7, 24, 47, 0.98);
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 181, 200, 0.2);
  }
  
  nav.active {
    display: flex;
  }
  
  .nav-btn, .nav-btn-login {
    width: 100%;
    margin: 0.5rem 0;
    text-align: center;
    margin-left: 0;
    justify-content: center;
  }
  
  /* Header mobile layout */
  .nav-wrapper {
    flex-direction: row;
    gap: 1rem;
  }
  
  .contact-hero {
    padding: 4rem 0 3rem 0;
  }
  
  .contact-hero h1 {
    font-size: 2.4rem;
  }
  
  .contact-hero p {
    font-size: 1.2rem;
  }
  
  .hero-illustration {
    height: 150px;
  }
  
  .floating-element {
    font-size: 2.5rem;
  }
  
  .contact-channels, .quick-tips, .faq-preview, .community-section {
    padding: 3rem 0;
  }
  
  .contact-channels h2, .quick-tips h2, .faq-preview h2 {
    font-size: 2.2rem;
  }
  
  .section-intro {
    font-size: 1.1rem;
  }
  
  .channels-grid {
    grid-template-columns: 1fr;
  }
  
  .channel-card {
    padding: 2rem 1.5rem;
  }
  
  .channel-icon {
    font-size: 3.5rem;
  }
  
  .channel-content h3 {
    font-size: 1.4rem;
  }
  
  .channel-content p {
    font-size: 1.05rem;
  }
  
  .channel-email {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }
  
  .tips-grid {
    grid-template-columns: 1fr;
  }
  
  .tip-card {
    padding: 2rem 1.5rem;
  }
  
  .faq-item {
    padding: 1.5rem;
  }
  
  .faq-answer p {
    padding-left: 0;
  }
  
  .community-text h2 {
    font-size: 2.2rem;
  }
  
  .community-text p {
    font-size: 1.1rem;
  }
  
  .student-avatar {
    font-size: 2.5rem;
  }
  
  .avatar-5 {
    font-size: 3rem;
  }
  
  #backToTop {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  /* Cookie banner mobile */
  #cookie-banner {
    width: calc(100% - 2rem);
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    margin: 0 auto;
  }
  
  #cookie-banner.minimized {
    width: 50px;
    height: 50px;
    bottom: 0.5rem;
    left: 0.5rem;
    right: auto;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    flex: none;
  }
  
  /* Footer mobile - 3x2 grid */
  footer .container {
    padding: 0 1rem;
  }
  
  .footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem 0.5rem;
    max-width: 100%;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .footer-links a {
    margin: 0;
    font-size: 0.88rem;
    white-space: normal;
    line-height: 1.3;
    padding: 0 0.2rem;
  }
  
  .footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #00b5c8);
    transition: width 0.3s ease;
  }
  
  .footer-links a:hover::after {
    width: 100%;
  }
  
  .footer-links a:hover {
    color: #FFD700;
    transform: translateY(-2px);
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 2rem;
  }
  
  .contact-hero p {
    font-size: 1.1rem;
  }
  
  .hero-illustration {
    height: 120px;
  }
  
  .floating-element {
    font-size: 2rem;
  }
  
  .contact-channels h2, .quick-tips h2, .faq-preview h2 {
    font-size: 1.8rem;
  }
  
  .channel-card {
    padding: 1.5rem;
  }
  
  .channel-icon {
    font-size: 3rem;
  }
  
  .channel-content h3 {
    font-size: 1.3rem;
  }
  
  .tip-card {
    padding: 1.5rem;
  }
  
  .community-text h2 {
    font-size: 1.8rem;
  }
  
  .student-avatar {
    font-size: 2rem;
  }
  
  .avatar-5 {
    font-size: 2.5rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.8rem 0.3rem;
  }
  
  .footer-links a {
    font-size: 0.85rem;
  }
}