* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #1a2938;
  background: #f5f8fa;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: #0d4f6c;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.ggr-wrapper {
  width: min(1280px, 95%);
  margin: 0 auto;
  padding: 0 20px;
}

.ggr-dynamic-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, #0d4f6c 0%, #1a6b8a 25%, #2a8fb8 50%, #1a6b8a 75%, #0d4f6c 100%);
  background-size: 400% 400%;
  animation: ggr-gradient-shift 25s ease infinite;
  overflow: hidden;
}

.ggr-dynamic-background::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  animation: ggr-pulse 8s ease-in-out infinite;
}

@keyframes ggr-gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes ggr-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.ggr-floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  animation: ggr-float 20s ease-in-out infinite;
}

.ggr-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.ggr-shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 10%;
  animation-delay: -5s;
}

.ggr-shape-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 20%;
  animation-delay: -10s;
}

.ggr-shape-4 {
  width: 250px;
  height: 250px;
  top: 30%;
  right: 30%;
  animation-delay: -15s;
}

@keyframes ggr-float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translate(30px, -30px) rotate(90deg);
    opacity: 0.8;
  }
  50% {
    transform: translate(-20px, 20px) rotate(180deg);
    opacity: 0.7;
  }
  75% {
    transform: translate(20px, 30px) rotate(270deg);
    opacity: 0.9;
  }
}

.ggr-site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(13, 79, 108, 0.1);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(13, 79, 108, 0.08);
  transition: all 0.3s ease;
}

.ggr-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 30px;
}

.ggr-brand-link {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.ggr-brand-link:hover {
  transform: translateY(-2px);
}

.ggr-logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: none;
}

.ggr-main-navigation {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.ggr-nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ggr-nav-item {
  position: relative;
}

.ggr-nav-link {
  display: block;
  padding: 12px 20px;
  color: #1a2938;
  font-weight: 500;
  font-size: 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ggr-nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #0d4f6c;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.ggr-nav-link:hover {
  color: #0d4f6c;
  background: rgba(13, 79, 108, 0.05);
  transform: translateY(-1px);
}

.ggr-nav-link:hover::before {
  width: 80%;
}

.ggr-mobile-toggle,
.ggr-close-button {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 6px;
  position: relative;
  z-index: 1001;
}

.ggr-toggle-bar {
  width: 28px;
  height: 3px;
  background: #0d4f6c;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.ggr-close-button {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ggr-close-line {
  width: 24px;
  height: 3px;
  background: #0d4f6c;
  border-radius: 3px;
  position: absolute;
  transition: all 0.3s ease;
}

.ggr-close-line:first-child {
  transform: rotate(45deg);
}

.ggr-close-line:last-child {
  transform: rotate(-45deg);
}

.ggr-hero-section {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.ggr-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ggr-hero-content {
  animation: ggr-fade-in-up 0.8s ease-out;
}

.ggr-hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ggr-hero-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
  line-height: 1.8;
}

.ggr-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.ggr-feature-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: ggr-badge-pulse 2s ease-in-out infinite;
}

.ggr-feature-badge:nth-child(2) {
  animation-delay: 0.3s;
}

.ggr-feature-badge:nth-child(3) {
  animation-delay: 0.6s;
}

.ggr-badge-icon {
  font-size: 16px;
  font-weight: bold;
}

@keyframes ggr-badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.ggr-hero-visual {
  position: relative;
  animation: ggr-fade-in-right 1s ease-out;
}

.ggr-hero-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: ggr-float-image 6s ease-in-out infinite;
}

@keyframes ggr-float-image {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes ggr-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ggr-fade-in-right {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.ggr-brands-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
}

.ggr-section-title {
  font-size: clamp(28px, 4vw, 42px);
  text-align: center;
  margin-bottom: 20px;
  color: #0d4f6c;
}

.ggr-section-intro {
  text-align: center;
  font-size: 18px;
  color: #5a6c7d;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ggr-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.ggr-brand-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(13, 79, 108, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(13, 79, 108, 0.1);
  position: relative;
  overflow: hidden;
}

.ggr-brand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0d4f6c, #2a8fb8, #0d4f6c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.ggr-brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(13, 79, 108, 0.2);
}

.ggr-brand-card:hover::before {
  transform: scaleX(1);
}

.ggr-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(13, 79, 108, 0.1);
}

.ggr-logo-link {
  display: inline-block;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 8px;
  background: rgb(40 111 140);
}

.ggr-logo-link:hover {
  background: rgba(13, 79, 108, 0.08);
  transform: scale(1.05);
}

.ggr-brand-logo {
  max-height: 50px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: none;
}

.ggr-rating-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  color: #0d4f6c;
}

.ggr-star {
  color: #ff8c00;
  font-size: 16px;
}

.ggr-rating-value {
  font-weight: 700;
}

.ggr-card-body {
  margin-bottom: 24px;
}

.ggr-card-title {
  font-size: 24px;
  margin-bottom: 12px;
  color: #0d4f6c;
}

.ggr-card-bonus {
  font-size: 16px;
  color: #2a8fb8;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.5;
}

.ggr-card-features {
  list-style: none;
  padding: 0;
}

.ggr-card-features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #5a6c7d;
  font-size: 14px;
}

.ggr-card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0d4f6c;
  font-weight: bold;
}

.ggr-card-footer {
  margin-top: auto;
}

.ggr-cta-button {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.ggr-btn-primary {
  background: linear-gradient(135deg, #0d4f6c, #2a8fb8);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(13, 79, 108, 0.3);
}

.ggr-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 79, 108, 0.4);
  background: linear-gradient(135deg, #2a8fb8, #0d4f6c);
}

.ggr-why-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f5f8fa 0%, #ffffff 100%);
}

.ggr-why-content {
  max-width: 900px;
  margin: 0 auto;
}

.ggr-why-text {
  font-size: 17px;
  line-height: 1.9;
  color: #3a4a5a;
}

.ggr-lead-text {
  font-size: 20px;
  font-weight: 500;
  color: #0d4f6c;
  margin-bottom: 24px;
}

.ggr-why-text p {
  margin-bottom: 20px;
}

.ggr-highlight-text {
  font-weight: 600;
  color: #0d4f6c;
  margin-top: 30px;
  margin-bottom: 16px;
  font-size: 18px;
}

.ggr-quality-list {
  margin: 24px 0;
  padding-left: 0;
}

.ggr-quality-item {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #3a4a5a;
  font-size: 16px;
}

.ggr-quality-item::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #2a8fb8;
  font-size: 12px;
}

.ggr-closing-text {
  font-weight: 500;
  color: #0d4f6c;
  margin-top: 30px;
  font-size: 18px;
}

.ggr-reviews-section {
  padding: 100px 0;
  background: #ffffff;
}

.ggr-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.ggr-review-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 6px 25px rgba(13, 79, 108, 0.08);
  border: 1px solid rgba(13, 79, 108, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ggr-review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 120px;
  color: rgba(13, 79, 108, 0.05);
  font-family: Georgia, serif;
  line-height: 1;
}

.ggr-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(13, 79, 108, 0.15);
}

.ggr-review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.ggr-reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ggr-reviewer-name {
  color: #0d4f6c;
  font-size: 16px;
}

.ggr-reviewer-location {
  color: #7a8a9a;
  font-size: 13px;
}

.ggr-review-stars {
  display: flex;
  gap: 2px;
}

.ggr-star-icon {
  color: #ffd700;
  font-size: 18px;
}

.ggr-review-text {
  color: #3a4a5a;
  line-height: 1.7;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.ggr-faq-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fa 100%);
}

.ggr-faq-container {
  max-width: 800px;
  margin: 50px auto 0;
}

.ggr-faq-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(13, 79, 108, 0.08);
  border: 1px solid rgba(13, 79, 108, 0.1);
  transition: all 0.3s ease;
}

.ggr-faq-item:hover {
  box-shadow: 0 6px 30px rgba(13, 79, 108, 0.12);
  transform: translateX(5px);
}

.ggr-faq-question {
  font-size: 20px;
  color: #0d4f6c;
  margin-bottom: 12px;
  font-weight: 600;
}

.ggr-faq-answer {
  color: #5a6c7d;
  line-height: 1.8;
  font-size: 16px;
}

.ggr-faq-list {
  list-style: none;
  padding-left: 0;
  margin-top: 12px;
}

.ggr-faq-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #5a6c7d;
}

.ggr-faq-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #2a8fb8;
  font-weight: bold;
  font-size: 20px;
}

.ggr-site-footer {
  background: linear-gradient(135deg, #0d4f6c 0%, #1a6b8a 50%, #0d4f6c 100%);
  background-size: 200% 200%;
  animation: ggr-footer-gradient 15s ease infinite;
  color: #ffffff;
  padding: 80px 0 40px;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

.ggr-site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

@keyframes ggr-footer-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.ggr-footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.ggr-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ggr-footer-logo {
  height: 45px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.ggr-footer-brand:hover .ggr-footer-logo {
  transform: scale(1.05);
}

.ggr-footer-tagline {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
  max-width: 300px;
}

.ggr-footer-nav {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.ggr-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
  width: 100%;
  max-width: 400px;
}

.ggr-footer-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  transition: all 0.3s ease;
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
  position: relative;
}

.ggr-footer-link::before {
  content: '→';
  position: absolute;
  left: -5px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #ffffff;
}

.ggr-footer-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(8px);
  padding-left: 24px;
}

.ggr-footer-link:hover::before {
  opacity: 1;
  left: 8px;
}

.ggr-footer-support {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding: 40px 0;
  text-align: center;
  position: relative;
  z-index: 1;
  margin: 30px 0;
}

.ggr-support-title {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
  font-weight: 600;
}

.ggr-support-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.ggr-support-link {
  display: inline-block;
  transition: all 0.3s ease;
  opacity: 0.85;
  filter: brightness(0.95);
}

.ggr-support-link:hover {
  opacity: 1;
  filter: brightness(1.1);
  transform: translateY(-3px);
}

.ggr-support-logo {
  height: 45px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
}

.ggr-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ggr-copyright {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  margin-bottom: 12px;
  font-weight: 500;
}

.ggr-disclaimer {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.6;
}

.ggr-policy-section {
  padding: 120px 0 80px;
  min-height: 80vh;
}

.ggr-policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 10px 40px rgba(13, 79, 108, 0.1);
}

.ggr-policy-title {
  font-size: clamp(32px, 4vw, 48px);
  color: #0d4f6c;
  margin-bottom: 24px;
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 3px solid #2a8fb8;
}

.ggr-policy-intro {
  font-size: 18px;
  color: #5a6c7d;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}

.ggr-policy-section-content {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(13, 79, 108, 0.1);
}

.ggr-policy-section-content:last-child {
  border-bottom: none;
}

.ggr-policy-heading {
  font-size: 24px;
  color: #0d4f6c;
  margin-bottom: 16px;
  font-weight: 700;
}

.ggr-policy-subheading {
  font-size: 20px;
  color: #2a8fb8;
  margin-top: 24px;
  margin-bottom: 12px;
  font-weight: 600;
}

.ggr-policy-section-content p {
  font-size: 16px;
  color: #3a4a5a;
  line-height: 1.8;
  margin-bottom: 16px;
}

.ggr-policy-section-content p strong {
  color: #0d4f6c;
  font-weight: 600;
}

.ggr-policy-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.ggr-policy-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #3a4a5a;
  font-size: 16px;
  line-height: 1.7;
}

.ggr-policy-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #2a8fb8;
  font-weight: bold;
  font-size: 18px;
}

@media (max-width: 991px) {
  .ggr-nav-list {
    position: fixed;
    top: 0;
    display: none;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  .ggr-nav-list.active {
    right: 0;
    display: flex;
  }

  .ggr-mobile-toggle,
  .ggr-close-button {
    display: flex;
  }

  .ggr-close-button.active {
    display: flex;
  }

  .ggr-nav-item {
    width: 100%;
  }

  .ggr-nav-link {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(13, 79, 108, 0.1);
    border-radius: 0;
  }

  .ggr-nav-link::before {
    display: none;
  }

  .ggr-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ggr-hero-visual {
    order: -1;
  }

  .ggr-brands-grid {
    grid-template-columns: 1fr;
  }

  .ggr-reviews-grid {
    grid-template-columns: 1fr;
  }

  .ggr-footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ggr-footer-nav {
    justify-content: flex-start;
  }

  .ggr-footer-links {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .ggr-wrapper {
    padding: 0 16px;
  }

  .ggr-hero-section {
    padding: 100px 0 60px;
  }

  .ggr-hero-title {
    font-size: 32px;
  }

  .ggr-hero-description {
    font-size: 16px;
  }

  .ggr-hero-features {
    flex-direction: column;
  }

  .ggr-brands-section,
  .ggr-why-section,
  .ggr-reviews-section,
  .ggr-faq-section {
    padding: 60px 0;
  }

  .ggr-section-title {
    font-size: 28px;
  }

  .ggr-brand-card {
    padding: 24px;
  }

  .ggr-review-card {
    padding: 24px;
  }

  .ggr-faq-item {
    padding: 24px;
  }

  .ggr-site-footer {
    padding: 60px 0 30px;
    margin-top: 60px;
  }

  .ggr-footer-content {
    gap: 30px;
  }

  .ggr-footer-logo {
    height: 35px;
  }

  .ggr-footer-support {
    padding: 30px 0;
    margin: 20px 0;
  }

  .ggr-support-title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .ggr-support-logos {
    gap: 20px;
  }

  .ggr-support-logo {
    height: 40px;
    max-width: 130px;
  }
}

@media (max-width: 480px) {
  .ggr-hero-title {
    font-size: 28px;
  }

  .ggr-hero-description {
    font-size: 15px;
  }

  .ggr-feature-badge {
    font-size: 13px;
    padding: 8px 16px;
  }

  .ggr-section-title {
    font-size: 24px;
  }

  .ggr-card-title {
    font-size: 20px;
  }

  .ggr-faq-question {
    font-size: 18px;
  }

  .ggr-policy-section {
    padding: 100px 0 60px;
  }

  .ggr-policy-content {
    padding: 40px 24px;
    border-radius: 16px;
  }

  .ggr-policy-title {
    font-size: 28px;
  }

  .ggr-policy-heading {
    font-size: 20px;
  }

  .ggr-policy-subheading {
    font-size: 18px;
  }
}

@media print {
  .ggr-dynamic-background,
  .ggr-floating-shape,
  .ggr-site-header,
  .ggr-site-footer {
    display: none;
  }

  body {
    background: #ffffff;
    color: #000000;
  }
}
