:root {
  --primary-color: #2ecc71;
  --secondary-color: #27ae60;
  --accent-color: #f1c40f;
  --text-color: #ecf0f1;
  --dark-bg: #1a1a1a;
  --darker-bg: #121212;
  --card-bg: rgba(30, 30, 30, 0.8);
  --border-color: rgba(255, 255, 255, 0.1);
}

/* General Styles */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-color);
  overflow-x: hidden;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(46, 204, 113, 0.3);
}

.section-subtitle {
  font-size: 1.2rem;
  color: rgba(236, 240, 241, 0.8);
  margin-bottom: 3rem;
}

/* Navigation */
.navbar {
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color) !important;
  text-shadow: 0 0 10px rgba(46, 204, 113, 0.3);
}

.nav-link {
  color: rgba(236, 240, 241, 0.8) !important;
  font-weight: 500;
  margin: 0 1rem;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-color) !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('./images/2151761244.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(46, 204, 113, 0.5);
  color: var(--primary-color);
}

.hero .lead {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-primary {
  background-color: var(--primary-color);
  border: none;
  color: var(--dark-bg);
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
  background-color: var(--secondary-color);
}

.btn-outline-light {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: var(--primary-color);
  color: var(--dark-bg);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.3);
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background-color: var(--darker-bg);
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-content {
  padding-left: 3rem;
}

.about-features {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--card-bg);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px);
  background: rgba(46, 204, 113, 0.1);
}

.feature-item i {
  color: var(--primary-color);
  margin-right: 1rem;
  font-size: 1.2rem;
}

/* Services Section */
.services-section {
  padding: 6rem 0;
  background-color: var(--dark-bg);
}

.service-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.service-features {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.service-features li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li:before {
  content: "✓";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

/* Why Choose Us Section */
.why-us-section {
  padding: 6rem 0;
  background-color: var(--darker-bg);
  position: relative;
  overflow: hidden;
}

.why-us-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.why-us-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.why-us-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: all 0.4s ease;
}

.why-us-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.why-us-card:hover::before {
  opacity: 1;
}

.why-us-icon {
  width: 80px;
  height: 80px;
  background: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  transition: all 0.4s ease;
}

.why-us-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.4s ease;
}

.why-us-card:hover .why-us-icon::after {
  opacity: 0.3;
  transform: scale(1);
}

.why-us-icon i {
  font-size: 2rem;
  color: var(--primary-color);
  transition: all 0.4s ease;
}

.why-us-card:hover .why-us-icon i {
  transform: scale(1.1);
}

.why-us-content {
  position: relative;
  z-index: 1;
}

.why-us-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.why-us-card:hover .why-us-content h3 {
  color: var(--accent-color);
}

.why-us-content p {
  color: rgba(236, 240, 241, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.why-us-stats {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  width: 100%;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.why-us-card:hover .stat-number {
  transform: scale(1.1);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(236, 240, 241, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background: linear-gradient(rgba(248, 249, 250, 0.95), rgba(248, 249, 250, 0.95)), 
              url('https://images.pexels.com/photos/3621104/pexels-photo-3621104.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 1);
}

.testimonial-rating {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background-color: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact-info-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: all 0.4s ease;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.contact-info-card:hover::before {
  opacity: 1;
}

.contact-info-icon {
  width: 80px;
  height: 80px;
  background: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  transition: all 0.4s ease;
}

.contact-info-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  opacity: 0;
  transform: scale(1.2);
  transition: all 0.4s ease;
}

.contact-info-card:hover .contact-info-icon::after {
  opacity: 0.3;
  transform: scale(1);
}

.contact-info-icon i {
  font-size: 2rem;
  color: var(--primary-color);
  transition: all 0.4s ease;
}

.contact-info-card:hover .contact-info-icon i {
  transform: scale(1.1);
}

.contact-info-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.contact-info-card:hover h3 {
  color: var(--accent-color);
}

.contact-info-card p {
  color: rgba(236, 240, 241, 0.8);
  margin-bottom: 1rem;
}

.contact-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.contact-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.contact-link:hover {
  color: var(--accent-color);
}

.contact-link:hover::after {
  width: 100%;
}

/* Contact Form Styling */
.contact-form-wrapper {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: all 0.4s ease;
}

.contact-form-wrapper:hover::before {
  opacity: 1;
}

.form-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.form-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.input-group {
  position: relative;
  transition: all 0.3s ease;
}

.input-group-text {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid var(--border-color);
  border-right: none;
  color: var(--primary-color);
  padding: 0 1.2rem;
  transition: all 0.3s ease;
}

.form-control {
  background: rgba(30, 30, 30, 0.5);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  padding: 1rem 1.2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: auto;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.form-control::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control:-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-control:focus {
  background: rgba(30, 30, 30, 0.7);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(46, 204, 113, 0.25);
  color: var(--text-color);
}

.form-control:focus + .input-group-text {
  border-color: var(--primary-color);
  background: rgba(46, 204, 113, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.invalid-feedback {
  color: #ff6b6b;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  padding-left: 0.5rem;
}

.btn-primary {
  background: var(--primary-color);
  border: none;
  color: var(--dark-bg);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.btn-primary i {
  transition: transform 0.3s ease;
}

.btn-primary:hover i {
  transform: translateX(5px);
}

/* Success Alert */
.alert-success {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.success-content {
  display: flex;
  align-items: center;
}

.success-content i {
  font-size: 2rem;
  margin-right: 1rem;
}

.success-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.success-text p {
  margin: 0;
  color: rgba(236, 240, 241, 0.8);
}

/* Footer */
footer {
  background-color: var(--darker-bg);
  color: var(--text-color);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-about h4 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-links h4 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-social h4 {
  color: white;
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--accent-color);
  color: var(--text-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
}

.footer-contact {
  margin: 1.5rem 0;
}

.footer-contact p {
  color: rgba(236, 240, 241, 0.8);
  font-size: 1rem;
}

.footer-contact a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.footer-actions {
  margin-top: 1.5rem;
}

.btn-outline-light {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-outline-light:hover {
  background-color: var(--primary-color);
  color: var(--dark-bg);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn-outline-light i {
  transition: transform 0.3s ease;
}

.btn-outline-light:hover i {
  transform: rotate(90deg);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hero, .about-section, .services-section, .why-us-section, 
  .testimonials-section, .contact-section {
    background-attachment: scroll;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero .lead {
    font-size: 1.5rem;
  }
  
  .about-content {
    padding-left: 0;
    margin-top: 3rem;
  }
  
  .contact-info-card {
    padding: 2rem;
  }
  
  .contact-info-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
  }
  
  .contact-info-icon i {
    font-size: 1.8rem;
  }
  
  .contact-info-card h3 {
    font-size: 1.3rem;
  }
  
  .form-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 767.98px) {
  .hero {
    min-height: 60vh;
    padding: 100px 0 60px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .lead {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-primary, .btn-outline-light {
    width: 100%;
  }
  
  .section-header {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .contact-form-wrapper {
    padding: 2.5rem;
  }
  
  .why-us-section {
    padding: 4rem 0;
  }
  
  .why-us-card {
    margin-bottom: 1.5rem;
  }
  
  .footer-bottom {
    padding: 1.5rem 0;
  }
  
  .footer-contact {
    margin: 1rem 0;
  }
  
  .footer-actions {
    margin-top: 1rem;
  }
}

/* Privacy and Terms Pages Styling */
.privacy-hero, .terms-hero {
  min-height: 40vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('./images/2151761244.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding-top: 80px;
  margin-bottom: 4rem;
}

.privacy-hero-content, .terms-hero-content {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.privacy-hero h1, .terms-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(46, 204, 113, 0.5);
  color: var(--primary-color);
}

.privacy-hero .lead, .terms-hero .lead {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.privacy-section, .terms-section {
  padding: 4rem 0;
  background-color: var(--dark-bg);
}

.privacy-card, .terms-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
/* 
.privacy-card::before, .terms-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: all 0.4s ease;
} */

.privacy-card:hover::before, .terms-card:hover::before {
  opacity: 1;
}

.privacy-content h2, .terms-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 2.5rem 0 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.privacy-content h2:first-child, .terms-content h2:first-child {
  margin-top: 0;
}

.privacy-content h2::after, .terms-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
}

.privacy-content p, .terms-content p {
  color: rgba(236, 240, 241, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.privacy-content ul, .terms-content ul {
  list-style: none;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.privacy-content li, .terms-content li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  color: rgba(236, 240, 241, 0.8);
}

.privacy-content li::before, .terms-content li::before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.privacy-contact, .terms-contact {
  padding: 4rem 0;
  background-color: var(--darker-bg);
}

.contact-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-card h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.contact-card p {
  color: rgba(236, 240, 241, 0.8);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .privacy-hero, .terms-hero {
    min-height: 30vh;
  }
  
  .privacy-hero h1, .terms-hero h1 {
    font-size: 2.5rem;
  }
  
  .privacy-hero .lead, .terms-hero .lead {
    font-size: 1.2rem;
  }
  
  .privacy-card, .terms-card {
    padding: 2rem;
  }
  
  .privacy-content h2, .terms-content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .privacy-hero, .terms-hero {
    min-height: 25vh;
    padding-top: 100px;
  }
  
  .privacy-hero h1, .terms-hero h1 {
    font-size: 2rem;
  }
  
  .privacy-hero .lead, .terms-hero .lead {
    font-size: 1rem;
  }
  
  .privacy-section, .terms-section {
    padding: 3rem 0;
  }
  
  .privacy-card, .terms-card {
    padding: 1.5rem;
  }
  
  .contact-card {
    padding: 2rem;
  }
}

/* Content Actions Styling */
.content-actions {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.content-actions .btn-outline-light {
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 767.98px) {
  .content-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
  
  .content-actions .btn-outline-light {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
  }
} 