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

body {
  font-family: "Nunito Sans", sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header Styles */
.sticky-header {
  position: sticky;
  top: 0;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 78, 146, 0.1);
  border-bottom: 2px solid rgba(253, 187, 45, 0.2);
  z-index: 100;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #004e92 0%, #fdbb2d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 0.5rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #004e92, #fdbb2d);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #004e92 0%, #fdbb2d 100%);
  color: white;
  padding: 6rem 2rem;
  text-align: center;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-button {
  display: inline-block;
  background: white;
  color: #004e92;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: slideInUp 0.8s ease-out 0.6s both;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #004e92 0%, #fdbb2d 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* Section Styles */
.features-section,
.about-section,
.advantages-section,
.coverage-section,
.networks-section,
.missions-section,
.contact-section,
.faq-section,
.privacy-section {
  padding: 4rem 2rem;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #004e92;
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Feature Cards */
.features-grid,
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-card,
.advantage-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 78, 146, 0.1);
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), linear-gradient(135deg, #004e92, #fdbb2d);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
}

.feature-card:hover,
.advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 78, 146, 0.2);
  background-image: linear-gradient(#f8f9fa, #f8f9fa), linear-gradient(135deg, #004e92, #fdbb2d);
}

.feature-icon,
.advantage-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3,
.advantage-card h3 {
  color: #004e92;
  margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials-section {
  padding: 4rem 2rem;
  background: #f0f5fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 78, 146, 0.1);
  border-left: 4px solid #fdbb2d;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 78, 146, 0.15);
}

.testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: #004e92;
}

/* Highlight Banner */
.highlight-banner {
  background: linear-gradient(135deg, #00c897 0%, #004e92 100%);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
  animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.highlight-content h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.highlight-content p {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* Timeline */
.timeline {
  margin: 3rem 0;
}

.timeline-item {
  display: flex;
  margin-bottom: 2rem;
  padding-left: 2rem;
  border-left: 3px solid #fdbb2d;
  position: relative;
  animation: fadeInLeft 0.6s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 0;
  width: 12px;
  height: 12px;
  background: #004e92;
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #fdbb2d;
}

.timeline-date {
  font-weight: 700;
  color: #004e92;
  font-size: 1.25rem;
  min-width: 100px;
}

.timeline-content h3 {
  margin: 0 0 0.5rem 0;
  color: #004e92;
}

/* About Values */
.values-section {
  margin-top: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 78, 146, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.value-card h3 {
  color: #004e92;
}

/* Comparison Table */
.comparison-section {
  margin-top: 3rem;
}

.comparison-table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 78, 146, 0.1);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
  align-items: center;
}

.comparison-row.header {
  background: linear-gradient(135deg, #004e92 0%, #fdbb2d 100%);
  color: white;
  font-weight: 700;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-cell {
  text-align: center;
}

.comparison-cell.green {
  color: #00c897;
  font-weight: 600;
}

/* Coverage Zones */
.coverage-zones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.coverage-zone {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 78, 146, 0.1);
  transition: all 0.3s ease;
}

.coverage-zone:hover {
  transform: translateY(-8px);
}

.zone-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.zone-icon + h3 {
  color: #004e92;
}

.signal-strength {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.signal-bar {
  width: 8px;
  height: 20px;
  background: #ddd;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.signal-bar:nth-child(1) {
  height: 8px;
  animation: pulse 1s ease-in-out infinite;
}

.signal-bar:nth-child(2) {
  height: 12px;
  animation: pulse 1s ease-in-out 0.2s infinite;
}

.signal-bar:nth-child(3) {
  height: 16px;
  animation: pulse 1s ease-in-out 0.4s infinite;
}

.signal-bar:nth-child(4) {
  height: 20px;
  animation: pulse 1s ease-in-out 0.6s infinite;
}

.signal-bar:nth-child(5) {
  height: 20px;
  animation: pulse 1s ease-in-out 0.8s infinite;
}

@keyframes pulse {
  0%,
  100% {
    background: #ddd;
  }
  50% {
    background: #00c897;
  }
}

/* Coverage Stats */
.coverage-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  background: linear-gradient(135deg, #004e92 0%, #00c897 100%);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 78, 146, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Map Image */
.coverage-map {
  margin-bottom: 2rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 78, 146, 0.1);
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Network Cards */
.networks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.network-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 78, 146, 0.1);
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), linear-gradient(135deg, #004e92, #fdbb2d);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  transition: all 0.3s ease;
}

.network-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 78, 146, 0.2);
}

.network-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.network-card h3 {
  color: #004e92;
  margin-bottom: 0.5rem;
}

.network-specs {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.spec {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: #555;
}

.spec strong {
  color: #00c897;
}

/* Network Infographic */
.network-infographic {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 78, 146, 0.1);
  margin: 3rem 0;
}

.metrics-container {
  margin-top: 2rem;
}

.metric {
  margin-bottom: 2rem;
}

.metric-label {
  font-weight: 600;
  color: #004e92;
  margin-bottom: 0.5rem;
  display: block;
}

.metric-bar {
  width: 100%;
  height: 25px;
  background: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, #00c897 0%, #004e92 100%);
  transition: width 1s ease-out;
}

.metric-value {
  color: #00c897;
  font-weight: 600;
  margin-top: 0.5rem;
  display: block;
}

/* Network SVG */
.network-lines {
  margin: 3rem 0;
  text-align: center;
}

.network-svg {
  max-width: 100%;
  height: 300px;
}

/* Mission Pillars */
.mission-statement {
  background: linear-gradient(135deg, #004e92 0%, #fdbb2d 100%);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.mission-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.mission-pillar {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 78, 146, 0.1);
  transition: all 0.3s ease;
}

.mission-pillar:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 78, 146, 0.2);
}

.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.mission-pillar h3 {
  color: #004e92;
}

.mission-points {
  list-style: none;
  margin-top: 1rem;
}

.mission-points li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
}

.mission-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00c897;
  font-weight: 700;
}

/* Mission Commitment */
.mission-commitment {
  background: #f0f5fa;
  padding: 2rem;
  border-radius: 15px;
  margin-top: 3rem;
}

.mission-commitment h2 {
  color: #004e92;
  margin-bottom: 2rem;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.commitment-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 78, 146, 0.1);
  transition: all 0.3s ease;
}

.commitment-card:hover {
  transform: scale(1.05);
}

.commitment-number {
  font-size: 2rem;
  font-weight: 700;
  color: #fdbb2d;
  margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
  padding: 4rem 2rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 78, 146, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #004e92;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #004e92;
  box-shadow: 0 0 0 3px rgba(0, 78, 146, 0.1);
}

.error-message {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: block;
}

.submit-button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #004e92 0%, #00c897 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(0, 78, 146, 0.3);
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  display: none;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  display: block;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  display: block;
}

/* Contact Info */
.contact-info h2 {
  color: #004e92;
  margin-bottom: 2rem;
}

.info-card {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 78, 146, 0.1);
  border-left: 4px solid #fdbb2d;
}

.info-card h3 {
  color: #004e92;
  margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 1.5rem;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 78, 146, 0.1);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 4px 15px rgba(0, 78, 146, 0.15);
}

.accordion-button {
  width: 100%;
  padding: 1.5rem;
  background: white;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #004e92;
  transition: all 0.3s ease;
}

.accordion-button:hover {
  background: #f8f9fa;
}

.accordion-button.active {
  background: linear-gradient(135deg, #004e92 0%, #fdbb2d 100%);
  color: white;
}

.accordion-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.accordion-button.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-content.show {
  padding: 1.5rem;
  max-height: 500px;
}

.accordion-content p {
  color: #555;
  line-height: 1.8;
}

/* Privacy Section */
.privacy-content {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 78, 146, 0.1);
}

.privacy-content h2 {
  color: #004e92;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-content p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}

.privacy-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.privacy-content li {
  margin-bottom: 0.5rem;
  color: #555;
}

.last-updated {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 1rem;
  border-left: 4px solid #fdbb2d;
  border-radius: 8px;
  margin-top: 2rem;
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #004e92 0%, #1a1a2e 100%);
  color: white;
  padding: 3rem 2rem 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #fdbb2d;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: #fdbb2d;
  margin-left: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .page-hero h1 {
    font-size: 1.75rem;
  }

  .nav-menu {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .network-svg {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

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

  .nav-menu {
    gap: 0.5rem;
    font-size: 0.8rem;
  }

  .features-grid,
  .advantages-grid,
  .networks-grid,
  .mission-pillars {
    grid-template-columns: 1fr;
  }
}
