/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

.blue {
  color: #0000cc !important;
}

.yellow {
  color: #ffea00 !important;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Typography */
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: #0000cc;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

/* Section Padding */
.about,
.how-it-works,
.who-we-are,
.raising-for,
.countdown,
.tournament-details,
.cta,
.contact {
  padding: 4rem 0;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 0.5rem 0;
  border-bottom: 2px solid #0000cc;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.nav-logo a:hover {
  transform: scale(1.05);
}

.nav-logo img {
  height: 80px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.logo-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0000cc;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

.logo-caption {
  font-size: 0.8rem;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #0000cc;
}

.nav-button {
  background: #0000cc;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.nav-button:hover {
  background: #ffea00;
  color: #1a1a1a;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0000cc 0%, #1a1a8a 100%);
  color: white;
  padding: 5rem 0 4rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-top: 70px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: 8rem;
  font-weight: 900;
  line-height: 0.8;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}

.title-line {
  display: block;
  color: #ffea00;
  text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  margin-bottom: 3rem;
}

.hero-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffea00;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.event-date,
.event-location {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.date-label,
.location-label {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
}

.date-value,
.location-value {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.time-value {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-left: 0.8rem;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.buggy-container {
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}

.buggy-image {
  width: 130%;
  height: auto;
  filter: drop-shadow(8px 8px 0px rgba(0, 0, 0, 0.3));
}

.hero-description {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  max-width: 400px;
}

.hero-cta {
  margin-top: 1.5rem;
  text-align: center;
}

/* About Section */
.about {
  background: #ffea00;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.about-left {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-buggy-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.about-buggy-image {
  width: 300px;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
}

.about-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.about-right p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.fundraising-goal {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem;
  background: #0000cc;
  border-radius: 20px;
  color: white;
}

.goal-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.goal-amount {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #ffea00;
}

/* How It Works Section */
.how-it-works {
  background: white;
  .section-title {
    margin-bottom: 3rem;
  }
}

.how-it-works-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.how-it-works-left {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.how-it-works-padel-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-it-works-padel-image {
  width: 300px;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  transform: scaleX(-1);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.step-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.step-number {
  background: #0000cc;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  flex-shrink: 0;
}

.step-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: #0000cc;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 700;
}

.step-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #1a1a1a;
}

.step-cta {
  margin-top: 1.5rem;
}

.step-button {
  display: inline-block;
  background: #ffea00;
  color: #1a1a1a;
  border: none;
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
  font-weight: 900;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step-button:hover {
  background: white;
  color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.donation-grid {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.tier {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #0000cc;
  gap: 0.8rem;
  flex: 1;
  min-width: 0;
}

.tier-label {
  font-weight: 500;
  color: #1a1a1a;
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
}

.tier-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0000cc;
}

/* Donation Details Styles */
.donation-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.8rem;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #0000cc;
  border: 1px solid #e9ecef;
}

.donation-field {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.donation-field:hover {
  border-color: #0000cc;
  box-shadow: 0 2px 8px rgba(0, 0, 204, 0.1);
}

.field-label {
  font-weight: 600;
  color: #495057;
  font-size: 0.9rem;
}

.field-value {
  font-family: 'Inter', monospace;
  color: #1a1a1a;
  flex: 1;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}

.copy-btn {
  background: #0000cc;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  min-width: 32px;
  height: 32px;
}

.copy-btn:hover {
  background: #000099;
  transform: scale(1.05);
}

.copy-btn:active {
  transform: scale(0.95);
}

.copy-btn svg {
  width: 16px;
  height: 16px;
}

/* Tax Incentive Info Styles */
.tax-incentive-info {
  margin-top: 1rem;
  padding: 0.8rem;
  background: #f0f8ff;
  border-radius: 8px;
  border-left: 3px solid #0000cc;
  border: 1px solid #e3f2fd;
}

.tax-incentive-info p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

.tax-incentive-info a {
  color: #0000cc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.tax-incentive-info a:hover {
  color: #000099;
  text-decoration: underline;
}

.how-it-works-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Who We Are Section */
.who-we-are {
  background: #f8f9fa;
}

.who-we-are-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.who-we-are-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.organization-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.org-description h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.org-description p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.brigades-supported {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid #0000cc;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.brigades-supported h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0000cc;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.brigades-supported ul {
  list-style: none;
  padding: 0;
}

.brigades-supported li {
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.brigades-supported li::before {
  content: '●';
  color: #0000cc;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.impact-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 150px;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #ffea00;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666;
  font-weight: 600;
}

.team-photo {
  text-align: left;
}

.team-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.photo-caption {
  font-style: italic;
  color: #1a1a1a;
  font-size: 1rem;
  margin-top: 8px;
}

.website-cta {
  text-align: center;
  margin-top: 2rem;
}

.website-button {
  display: inline-block;
  background: #ffea00;
  color: #1a1a1a;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.website-button:hover {
  background: #ffea00;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* What We're Raising For Section */
.raising-for {
  background: #0000cc;
  color: white;

  .section-title {
    margin-bottom: 5rem;
  }
}

.raising-for-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
  margin-top: 2rem;
}

.raising-for-left {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.raising-for-buggy-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.raising-for-buggy-image {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

.raising-for .section-title {
  color: white;
  text-align: center;
}

.raising-for-right {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.buggy-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.buggy-details h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffea00;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.buggy-details p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.buggy-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  justify-content: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

/* Countdown Section */
.countdown {
  background: #ffea00;
  text-align: center;
}

.countdown .section-title {
  color: #1a1a1a;
  margin-bottom: 4rem;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.countdown-item {
  text-align: center;
  min-width: 150px;
}

.countdown-number {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: #0000cc;
  line-height: 1;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
}

.countdown-label {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #1a1a1a;
}

/* Tournament Details Section */
.tournament-details {
  background: white;
}

.tournament-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.tournament-left {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tournament-padel-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.tournament-padel-image {
  width: 300px;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.detail-item {
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 20px;
  border-left: 4px solid #0000cc;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.detail-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: #0000cc;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 700;
}

.detail-item p {
  font-size: 1rem;
  color: #1a1a1a;
}

/* CTA Section */
.cta {
  background: #0000cc;
  text-align: center;
  color: white;
}

.cta .section-title {
  color: white;
  margin-bottom: 2rem;
}

.cta-text {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-button {
  background: #ffea00;
  color: #1a1a1a;
  border: none;
  padding: 1.5rem 3rem;
  font-size: 1.3rem;
  font-weight: 900;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.cta-button:hover {
  background: white;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Contact Section */
.contact {
  background: white;
  text-align: center;
}

.contact-text {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: #666;
  margin-top: 4rem;
}

.contact-email-container {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.contact-email {
  font-size: 2rem;
  font-weight: 700;
  color: #0000cc;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.contact-email:hover {
  color: #ffea00;
}

.contact-email-container .copy-btn {
  background: #0000cc;
  border: none;
  border-radius: 6px;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-email-container .copy-btn:hover {
  background: #ffea00;
  transform: translateY(-2px);
}

.contact-email-container .copy-btn svg {
  color: white;
  transition: color 0.3s ease;
}

.contact-email-container .copy-btn:hover svg {
  color: #0000cc;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 0rem 0 1.5rem 0;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #999;
}

.footer-attribution {
  margin-top: 0.5rem;
  font-size: 0.7rem;
  opacity: 0.6;
}

.footer-attribution a {
  color: #999;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-attribution a:hover {
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 6rem;
  }

  .section-title {
    font-size: 3rem;
  }

  /* Standardized h3 sizing for tablet */
  .step-content h3,
  .org-description h3,
  .buggy-details h3,
  .detail-item h3 {
    font-size: 1.8rem;
  }

  .countdown-number {
    font-size: 4rem;
  }
}

@media (max-width: 886px) {
  .container {
    padding: 0 15px;
    max-width: 100%;
  }

  /* Hide padel images on mobile */
  .about-buggy-image,
  .how-it-works-padel-image,
  .tournament-padel-image {
    display: none;
  }

  .hero-content,
  .about-content,
  .how-it-works-content,
  .who-we-are-content,
  .raising-for-content,
  .tournament-content {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3rem 0 2.5rem 0;
    margin-top: 50px;
    min-height: auto;
  }

  .hero-content {
    gap: 2rem;
    text-align: center;
  }

  .hero-title {
    font-size: 4rem;
    text-align: center;
  }

  .hero-tagline {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  .hero-visual {
    margin-top: 2rem;
  }

  .hero-description {
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 100%;
    padding: 0 1rem;
  }

  .hero-cta {
    margin-top: 0.5rem;
  }

  .buggy-container {
    margin-top: 0;
  }

  .event-details {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0 1rem;
    flex-wrap: wrap;
  }

  .event-date,
  .event-location {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
    min-width: 200px;
    max-width: 300px;
  }

  .date-value,
  .location-value {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2.5rem;
    text-align: center;
  }

  .countdown-timer {
    gap: 2rem;
  }

  .countdown-item {
    min-width: 100px;
  }

  .countdown-number {
    font-size: 3rem;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }

  .donation-grid {
    flex-direction: column;
    gap: 0.8rem;
  }

  .tier {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .tier-label {
    font-size: 0.9rem;
  }

  .tier-amount {
    font-size: 1.3rem;
  }

  .donation-details {
    margin-top: 1rem;
    padding: 0.6rem;
  }

  .donation-field {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.6rem;
  }

  .field-label {
    font-size: 0.8rem;
  }

  .field-value {
    font-size: 0.85rem;
    word-break: break-all;
  }

  .copy-btn {
    align-self: flex-end;
    min-width: 28px;
    height: 28px;
    padding: 0.4rem;
  }

  .step-item {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .step-content {
    width: 100%;
    text-align: center;
  }

  /* Standardized h3 sizing for mobile */
  .step-content h3,
  .org-description h3,
  .buggy-details h3,
  .detail-item h3 {
    font-size: 1.5rem;
  }

  .step-content h3 {
    text-align: center;
  }

  .step-content p {
    font-size: 1rem;
    text-align: center;
  }

  .step-button {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .steps-container {
    width: 100%;
    max-width: 100%;
  }

  .donation-grid {
    width: 100%;
    justify-content: center;
  }

  .donation-details {
    width: 100%;
    text-align: center;
  }

  .donation-field {
    width: 100%;
    text-align: center;
  }

  .nav-links {
    display: none;
  }

  .logo-text {
    display: none;
  }

  /* Mobile navbar height reduction */
  .navbar {
    padding: 0.3rem 0;
  }

  .nav-logo img {
    height: 50px;
    width: auto;
  }

  .nav-button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  /* Contact email mobile fixes for tablets */
  .contact-email-container {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
    align-items: center;
  }

  .contact-email {
    font-size: 1.5rem;
    word-break: break-all;
    text-align: center;
    flex: 0 1 auto;
    max-width: calc(100% - 44px);
  }

  .contact-email-container .copy-btn {
    flex-shrink: 0;
  }

  /* Ensure full width on mobile */
  body {
    width: 100%;
    overflow-x: hidden;
  }

  html {
    width: 100%;
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
    max-width: 100%;
  }

  .hero-title {
    font-size: 3rem;
  }

  .countdown-timer {
    flex-direction: column;
    gap: 2rem;
  }

  .countdown-item {
    min-width: auto;
  }

  .logos-grid {
    grid-template-columns: 1fr;
  }

  .impact-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item {
    min-width: auto;
  }

  .buggy-container {
    width: 250px;
    height: 250px;
  }

  .cta-button {
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
  }

  .step-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  /* Additional mobile fixes */
  .section-title {
    font-size: 2rem;
  }

  /* Standardized h3 sizing for small mobile */
  .step-content h3,
  .org-description h3,
  .buggy-details h3,
  .detail-item h3 {
    font-size: 1.3rem;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }

  .date-value,
  .location-value {
    font-size: 1.5rem;
  }

  .event-details {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding: 0 0.5rem;
    flex-wrap: wrap;
  }

  .event-date,
  .event-location {
    padding: 0.8rem;
    flex: 1;
    min-width: 150px;
    max-width: 280px;
  }

  .hero-description {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  .hero-cta {
    margin-bottom: 1.5rem;
  }

  .hero-content {
    gap: 1.5rem;
  }

  /* Additional mobile navbar optimizations for small screens */
  .navbar {
    padding: 0.2rem 0;
  }

  .nav-logo img {
    height: 45px;
  }

  .nav-button {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }

  .hero {
    margin-top: 45px;
  }

  /* Contact email mobile fixes */
  .contact-email-container {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
  }

  .contact-email {
    font-size: 1.2rem;
    word-break: break-all;
    text-align: center;
    flex: 0 1 auto;
    max-width: calc(100% - 44px);
  }

  .contact-email-container .copy-btn {
    flex-shrink: 0;
    min-width: 32px;
    height: 32px;
  }

  /* Ensure no horizontal scroll */
  * {
    max-width: 100%;
  }
}
