/* --- 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;
}

/* --- COOKIES HERO SECTION --- */
.cookies-hero {
  background: rgba(234, 253, 255, 0.1);
  padding: 5rem 0 3rem 0;
  text-align: center;
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(0, 181, 200, 0.2);
}

.cookies-hero h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.cookies-hero p {
  max-width: 800px;
  margin: 0 auto 2rem auto;
  font-size: 1.3rem;
  color: #cceff5;
  font-weight: 500;
  line-height: 1.6;
}

.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 215, 0, 0.1);
  color: #FFD700;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

/* --- COOKIES NAVIGATION - MOBILE FRIENDLY --- */
.cookies-nav-section {
  background: rgba(7, 24, 47, 0.8);
  padding: 1.5rem 0;
  position: sticky;
  top: 80px;
  z-index: 90;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 181, 200, 0.2);
}

.cookies-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid transparent;
  color: #cceff5;
  padding: 0.8rem 1.2rem;
  border-radius: 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-item:hover {
  background: rgba(0, 181, 200, 0.1);
  color: #00b5c8;
  border-color: rgba(0, 181, 200, 0.3);
}

.nav-item.active {
  background: linear-gradient(135deg, #00b5c8 0%, #008aa5 100%);
  color: white;
  border-color: #00b5c8;
  box-shadow: 0 4px 12px rgba(0, 181, 200, 0.3);
}

.nav-item i {
  font-size: 1.1rem;
}

/* --- COOKIES CONTENT SECTIONS --- */
.cookies-content {
  padding: 3rem 0 5rem 0;
}

.cookies-section {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.cookies-section.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.cookies-section h2 {
  color: #FFD700;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.section-intro {
  color: #cceff5;
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 800px;
}

/* Cookies Cards */
.cookies-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.card-icon {
  font-size: 3rem;
  color: #00b5c8;
  flex-shrink: 0;
}

.card-content h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.card-content p {
  color: #cceff5;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

/* Key Points Grid */
.key-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.key-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.key-point i {
  font-size: 1.8rem;
  color: #00b5c8;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.key-point h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.key-point p {
  color: #cceff5;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* Cookies Notes */
.cookies-note {
  background: rgba(255, 215, 0, 0.1);
  border-left: 4px solid #FFD700;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cookies-note.warning {
  background: rgba(255, 107, 107, 0.1);
  border-left-color: #ff6b6b;
}

.cookies-note i {
  font-size: 1.3rem;
  color: #FFD700;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.cookies-note.warning i {
  color: #ff6b6b;
}

.cookies-note p {
  color: #cceff5;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.cookies-note a {
  color: #00b5c8;
  text-decoration: none;
  font-weight: 600;
}

.cookies-note a:hover {
  text-decoration: underline;
}

/* Cookie Types Grid */
.cookie-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

.cookie-type {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.cookie-type.essential {
  border-left: 4px solid #00b5c8;
}

.cookie-type.analytics {
  border-left: 4px solid #FFD700;
}

.cookie-type.preference {
  border-left: 4px solid #ff6b6b;
}

.cookie-type:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 181, 200, 0.2);
}

.type-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.type-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.cookie-type.essential .type-icon {
  color: #00b5c8;
}

.cookie-type.analytics .type-icon {
  color: #FFD700;
}

.cookie-type.preference .type-icon {
  color: #ff6b6b;
}

.type-header h3 {
  color: #fff;
  font-size: 1.4rem;
  margin: 0;
  font-weight: 700;
  flex: 1;
}

.type-badge {
  background: #00b5c8;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.type-badge.optional {
  background: #FFD700;
  color: #07182f;
}

.cookie-type p {
  color: #cceff5;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cookie-examples {
  margin-bottom: 1.5rem;
}

.cookie-examples h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.cookie-examples ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cookie-examples li {
  color: #cceff5;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
}

.cookie-examples li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00b5c8;
  font-weight: bold;
}

.cookie-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.control-status {
  color: #cceff5;
  font-size: 0.9rem;
  font-weight: 600;
}

.control-note {
  color: #ff6b6b;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.toggle-switch.large {
  width: 60px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

.toggle-switch.large .toggle-slider:before {
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
}

input:checked + .toggle-slider {
  background-color: #00b5c8;
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

.toggle-switch.large input:checked + .toggle-slider:before {
  transform: translateX(30px);
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 181, 200, 0.4);
  box-shadow: 0 8px 25px rgba(0, 181, 200, 0.2);
}

.benefit-icon {
  font-size: 3rem;
  color: #00b5c8;
  margin-bottom: 1.5rem;
}

.benefit-card h4 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.benefit-card p {
  color: #cceff5;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Data Privacy */
.data-privacy {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 1rem;
  margin: 2.5rem 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.data-privacy h3 {
  color: #00b5c8;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.privacy-assurances {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.assurance {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.assurance i {
  font-size: 1.5rem;
  color: #FFD700;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.assurance h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.assurance p {
  color: #cceff5;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

/* Management Options */
.management-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

.management-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.management-icon {
  font-size: 3rem;
  color: #00b5c8;
  margin-bottom: 1.5rem;
  text-align: center;
}

.management-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-align: center;
}

.management-card p {
  color: #cceff5;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Browser Links */
.browser-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.browser-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 181, 200, 0.1);
  color: #00b5c8;
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 181, 200, 0.3);
}

.browser-link:hover {
  background: rgba(0, 181, 200, 0.2);
  transform: translateY(-2px);
}

.browser-link i {
  font-size: 1.2rem;
}

/* Platform Controls */
.platform-controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.platform-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.control-info h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.control-info p {
  color: #cceff5;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.save-preferences-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #00b5c8 0%, #008aa5 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.05rem;
  width: 100%;
  justify-content: center;
}

.save-preferences-btn:hover {
  background: linear-gradient(135deg, #008aa5 0%, #006f87 100%);
  transform: translateY(-2px);
}

/* Third Party */
.third-party-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.third-party-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.third-party-card h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.provider-info {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.provider-logo {
  font-size: 3rem;
  color: #00b5c8;
  flex-shrink: 0;
}

.provider-details p {
  color: #cceff5;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.provider-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.provider-link {
  background: rgba(0, 181, 200, 0.1);
  color: #00b5c8;
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 181, 200, 0.3);
}

.provider-link:hover {
  background: rgba(0, 181, 200, 0.2);
  transform: translateY(-2px);
}

/* Embedded Content */
.embedded-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 1rem;
  margin: 2.5rem 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.embedded-content h3 {
  color: #00b5c8;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.embedded-content p {
  color: #cceff5;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* --- 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) {
  .cookies-hero h1 {
    font-size: 2.5rem;
  }
  
  .cookies-hero p {
    font-size: 1.2rem;
  }
  
  .cookies-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  
  .key-points {
    grid-template-columns: 1fr;
  }
  
  .cookie-types-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .management-options {
    grid-template-columns: 1fr;
  }
  
  .browser-links {
    grid-template-columns: repeat(2, 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;
  }
  
  .cookies-hero {
    padding: 4rem 0 2rem 0;
  }
  
  .cookies-hero h1 {
    font-size: 2rem;
  }
  
  .cookies-hero p {
    font-size: 1.1rem;
  }
  
  .last-updated {
    font-size: 0.85rem;
  }
  
  /* Cookies Navigation - Mobile Horizontal Scroll */
  .cookies-nav-section {
    top: 70px;
    padding: 1rem 0;
  }
  
  .cookies-nav {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0.5rem;
    flex-wrap: nowrap;
  }
  
  .cookies-nav::-webkit-scrollbar {
    display: none;
  }
  
  .nav-item {
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  .cookies-content {
    padding: 2rem 0 4rem 0;
  }
  
  .cookies-section h2 {
    font-size: 1.8rem;
  }
  
  .section-intro {
    font-size: 1.1rem;
  }
  
  .cookies-card {
    padding: 1.5rem;
  }
  
  .card-icon {
    font-size: 2.5rem;
  }
  
  .key-point {
    padding: 1.2rem;
  }
  
  .key-point i {
    font-size: 1.5rem;
  }
  
  .cookie-type {
    padding: 1.5rem;
  }
  
  .type-header {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  
  .type-badge {
    align-self: center;
  }
  
  .benefit-card {
    padding: 1.5rem;
  }
  
  .benefit-icon {
    font-size: 2.5rem;
  }
  
  .management-card {
    padding: 1.5rem;
  }
  
  .management-icon {
    font-size: 2.5rem;
  }
  
  .platform-control {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .provider-info {
    flex-direction: column;
    text-align: center;
  }
  
  .provider-logo {
    align-self: center;
  }
  
  .provider-links {
    justify-content: center;
  }
  
  #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) {
  .cookies-hero h1 {
    font-size: 1.8rem;
  }
  
  .cookies-hero p {
    font-size: 1rem;
  }
  
  .nav-item {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }
  
  .nav-item i {
    font-size: 1rem;
  }
  
  .cookies-section h2 {
    font-size: 1.6rem;
  }
  
  .key-points {
    grid-template-columns: 1fr;
  }
  
  .cookie-types-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .management-options {
    grid-template-columns: 1fr;
  }
  
  .browser-links {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.8rem 0.3rem;
  }
  
  .footer-links a {
    font-size: 0.85rem;
  }
}