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

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.primary-btn {
  background-color: #ea384c;
  color: white;
}

.primary-btn:hover {
  background-color: #d42d3f;
}

.light-btn {
  background-color: white;
  color: #ea384c;
}

.light-btn:hover {
  background-color: #f8f8f8;
}

/* Navigation */
.navbar {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  height: 48px;
}

.menu-links {
  display: none;
}

.menu-item {
  margin: 0 16px;
  color: #333;
  transition: color 0.3s ease;
}

.menu-item:hover {
  color: #ea384c;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: #333;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: white;
  z-index: 99;
  display: none;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-container {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.mobile-menu-item {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  font-size: 18px;
}

.mobile-menu-item.highlight {
  color: #ea384c;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #ea384c, #000000e6);
  color: white;
  padding: 100px 0;
  height: 600px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 550px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Page Header */
.page-header {
  background: linear-gradient(to right, #ea384c, #000000e6);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 40px;
  font-weight: 700;
}

/* About Section */
.about-section {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.about-content p {
  margin-bottom: a5px;
  line-height: 1.8;
  color: #444;
}

.quote {
  font-style: italic;
  border-left: 3px solid #ea384c;
  padding-left: 20px;
  margin: 30px 0;
  color: #666;
}

.about-image {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.metric-item {
  margin-bottom: 15px;
}

.metric-title {
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.metric-bar {
  height: 10px;
  background-color: #eee;
  border-radius: 5px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  background-color: #ea384c;
  border-radius: 5px;
}

.metric-value {
  text-align: right;
  font-size: 14px;
  color: #666;
  margin-top: 2px;
}

/* Plans Section */
.plans {
  padding: 80px 0;
  background-color: #f7f7f7;
}

.plans h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 15px;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

.plan-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.plan-card h3 {
  font-size: 24px;
  color: #ea384c;
  margin-bottom: 15px;
}

.price {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 25px;
}

.price span {
  font-size: 14px;
  color: #666;
  font-weight: normal;
}

.plan-card ul {
  margin-bottom: 25px;
}

.plan-card li {
  padding: 8px 0;
  color: #555;
}

.plan-card .btn {
  width: 100%;
}

/* Contact Section */
.contact {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.info-list p {
  margin-bottom: 15px;
  color: #555;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn {
  margin-top: 10px;
}

/* Footer */
.footer {
  background-color: #222;
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 48px;
  margin-bottom: 15px;
}

.footer-about p,
.footer-contact p {
  color: #aaa;
  margin-bottom: 10px;
}

.footer h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer h3:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 40px;
  background-color: #ea384c;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #aaa;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

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

/* Responsive Styles */
@media (min-width: 768px) {
  .menu-links {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  .about-grid {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }
}
