* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.6;
}

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

.flex, header .header-container {
  display: flex;
}
.flex-between, header .header-container {
  justify-content: space-between;
}
.flex-center, header .header-container {
  align-items: center;
}

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

.section {
  padding: 5rem 0;
}
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 1rem;
}
.section-title p {
  font-size: 1.2rem;
  color: #2d3748;
  max-width: 700px;
  margin: 0 auto;
}

.btn {
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.btn-primary {
  background-color: #f5a623;
  color: #fff;
}
.btn-primary:hover {
  background-color: rgb(219.0434782609, 140.3869565217, 9.9565217391);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.btn-secondary {
  background: #1a365d;
  color: #fff;
}
.btn-secondary:hover {
  background: #f5a623;
}

header {
  background: linear-gradient(135deg, #1a365d 0%, rgb(14.8571428571, 30.8571428571, 53.1428571429) 100%);
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
header .logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.8rem;
  font-weight: 700;
}
header .logo i {
  color: #f5a623;
}
header nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}
header nav ul a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}
header nav ul a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hero {
  background: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.9)), url("https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1770&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 6rem 2rem;
}
.hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.hero .hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.hero .hero-content p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.package-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}
.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.package-header {
  padding: 1.5rem;
  color: #fff;
  text-align: center;
}
.package-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.package-price {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.package-description {
  font-size: 0.95rem;
  opacity: 0.9;
}
.package-popular {
  position: absolute;
  top: 10px;
  right: -10px;
  background: #48bb78;
  color: #fff;
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
  transform: rotate(15deg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.package-features {
  padding: 1.5rem;
}
.package-features ul {
  list-style: none;
  margin-bottom: 1.5rem;
}
.package-features ul li {
  padding: 0.6rem 0;
  display: flex;
  align-items: flex-start;
}
.package-features ul li i {
  color: #48bb78;
  margin-right: 0.8rem;
  margin-top: 0.3rem;
}

.starter .package-header {
  background: linear-gradient(135deg, #3498db, #2c3e50);
}

.growth .package-header {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.advanced .package-header {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.enterprise .package-header {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}
.enterprise .btn-secondary {
  background: #f5a623;
}

.divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, #f5a623, transparent);
  margin: 1.5rem 0;
}

.testimonials {
  background-color: #f8f9fa;
  text-align: center;
}
.testimonials .testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.testimonials .testimonial-content {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}
.testimonials .testimonial-content:before {
  content: "";
  font-size: 4rem;
  color: #f5a623;
  opacity: 0.2;
  position: absolute;
  top: -1.5rem;
  left: -1rem;
}
.testimonials .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonials .author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #1a365d;
}
.testimonials .author-info h4 {
  color: #1a365d;
}
.testimonials .author-info p {
  color: #2d3748;
  font-size: 0.9rem;
}

footer {
  background: #1a365d;
  color: #fff;
  padding: 32px 0;
}
footer .footer-container {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
footer .footer-column h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}
footer .footer-column h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #f5a623;
}
footer .footer-column p {
  margin-bottom: 1rem;
}
footer .footer-links {
  list-style: none;
}
footer .footer-links li {
  margin-bottom: 0.8rem;
}
footer .footer-links a {
  color: rgb(148.7142857143, 180.7142857143, 225.2857142857);
  text-decoration: none;
  transition: all 0.3s ease;
}
footer .footer-links a:hover {
  color: #f5a623;
  padding-left: 5px;
}
footer .contact-info {
  list-style: none;
}
footer .contact-info li {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}
footer .contact-info li i {
  color: #f5a623;
  margin-top: 0.3rem;
}
footer .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.3s ease;
}
footer .social-links a:hover {
  background: #f5a623;
  transform: translateY(-3px);
}
footer .copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2d3748;
  color: #fff;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
.cookie-consent.show {
  transform: translateY(0);
}
.cookie-consent .cookie-text {
  max-width: 800px;
  margin-right: 2rem;
}
.cookie-consent .cookie-text p {
  font-size: 0.95rem;
  color: rgb(138.6923076923, 154.8461538462, 182.3076923077);
}
.cookie-consent .cookie-text a {
  color: #f5a623;
  text-decoration: none;
}
.cookie-consent .cookie-buttons {
  display: flex;
  gap: 1rem;
}
.cookie-consent .cookie-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  border: none;
}
.cookie-consent .cookie-accept {
  background: #f5a623;
  color: #fff;
}
.cookie-consent .cookie-decline {
  background: transparent;
  color: rgb(138.6923076923, 154.8461538462, 182.3076923077);
  border: 1px solid rgb(84.2307692308, 102.9487179487, 134.7692307692);
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }
  nav ul {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .cookie-consent {
    flex-direction: column;
    text-align: center;
  }
  .cookie-consent .cookie-text {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
@media (max-width: 480px) {
  .package-popular {
    font-size: 0.7rem;
    padding: 0.3rem 1rem;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

/*# sourceMappingURL=index.css.map */
