/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0047AB 0%, #3a7bc8 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  margin: -20px -20px 40px -20px;
}

.hero h1 {
  color: white;
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 1.3em;
  margin-bottom: 30px;
}

.hero-btn {
  background-color: white;
  color: #0047AB;
  padding: 15px 40px;
  font-size: 1.1em;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Stats Section */
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 40px 0;
  padding: 40px 20px;
  background-color: #f8f9fa;
  border-radius: 10px;
}

.stat-box {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 2.5em;
  font-weight: 700;
  color: #0047AB;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1em;
  color: #6c757d;
}

/* Service Cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.service-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  border-color: #0047AB;
}

.service-card h3 {
  color: #0047AB;
  margin-bottom: 15px;
  font-size: 1.5em;
}

.service-card p {
  color: #6c757d;
  line-height: 1.6;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.pricing-table th {
  background-color: #0047AB;
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: 600;
}

.pricing-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #e0e0e0;
}

.pricing-table tr:hover {
  background-color: #f8f9fa;
}

.pricing-category {
  background-color: #e3f2fd !important;
  font-weight: 600;
  color: #0047AB;
}

/* Webinar Cards */
.webinar-card {
  background: white;
  border: 2px solid #0047AB;
  border-radius: 10px;
  padding: 25px;
  margin: 20px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.webinar-card h3 {
  color: #0047AB;
  margin-bottom: 15px;
}

.webinar-card p {
  margin: 8px 0;
  color: #495057;
}

.webinar-date {
  font-weight: 600;
  color: #0047AB;
}

.register-btn {
  background-color: #0047AB;
  color: white;
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  margin-top: 15px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.register-btn:hover {
  background-color: #003380;
  transform: translateY(-2px);
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 30px 0;
}

.contact-info h3 {
  color: #0047AB;
  margin-bottom: 20px;
}

.contact-info p {
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
}

.contact-form h3 {
  color: #0047AB;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #495057;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ced4da;
  border-radius: 5px;
  font-size: 1em;
}

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

.submit-btn {
  background-color: #0047AB;
  color: white;
  padding: 12px 40px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1em;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #003380;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.feature-box {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.feature-box h3 {
  color: #0047AB;
  margin: 20px 0 15px 0;
}

.feature-icon {
  font-size: 3em;
  color: #0047AB;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2em;
  }
  
  .hero p {
    font-size: 1.1em;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Section Styling */
.section {
  padding: 40px 0;
}

.section-title {
  text-align: center;
  color: #0047AB;
  font-size: 2.5em;
  margin-bottom: 40px;
  font-weight: 700;
}

/* Overview Section */
.overview {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 10px;
  margin: 40px 0;
  line-height: 1.8;
}

.overview h2 {
  text-align: center;
  margin-bottom: 30px;
}
