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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Navigation Styles */
.navbar {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  position: relative;
}

.diamond-shape {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4caf50, #2196f3);
  transform: rotate(45deg);
  border-radius: 8px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-weight: bold;
  font-size: 16px;
  color: #333;
  letter-spacing: 1px;
}

.brand-subtitle {
  font-size: 12px;
  color: #666;
  letter-spacing: 2px;
}

.nav-title h1 {
  font-size: 24px;
  font-weight: normal;
  color: #333;
}

/* Hero Section Styles */
.hero {
  background: linear-gradient(135deg, #f5f7ff 0%, #c3cfe2 100%);
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}

.background-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      45deg,
      transparent 40%,
      rgba(255, 255, 255, 0.3) 50%,
      transparent 60%
    ),
    linear-gradient(
      -45deg,
      transparent 40%,
      rgba(255, 255, 255, 0.3) 50%,
      transparent 60%
    );
  background-size: 50px 50px;
  animation: moveLines 20s linear infinite;
}

@keyframes moveLines {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 10;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.hero-left {
  padding-top: 40px;
}

.hero-heading {
  font-size: 48px;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
  margin-bottom: 30px;
}

.hero-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
}

.reviews-section {
  margin-top: 40px;
}

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

.reviews-stats {
  display: flex;
  gap: 20px;
  align-items: center;
}

.reviews-count {
  font-size: 14px;
  color: #666;
}

.reviews-rating-text {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars-image {
  height: 32px;
  width: auto;
}

.rating-score {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.verified-image {
  height: 32px;
  width: auto;
}

.verified-text {
  font-size: 12px;
  font-weight: bold;
  color: #4caf50;
  letter-spacing: 1px;
}

/* Form Styles */
.contact-form-container {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

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

.form-group {
  position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e1e5e9;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4caf50;
}

.form-group textarea {
  resize: vertical;
  font-family: Arial, sans-serif;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

.submit-btn {
  background: #3f51b5;
  color: white;
  border: none;
  padding: 18px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background: #303f9f;
}

.report-abuse {
  text-align: center;
  margin-top: 15px;
}

.report-link {
  color: #999;
  font-size: 12px;
  text-decoration: underline;
}

.report-link:hover {
  color: #666;
}

/* Thank You Message Styles */
.thank-you-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
  z-index: 1000;
  min-width: 300px;
}

.thank-you-content h3 {
  color: #4caf50;
  margin-bottom: 15px;
  font-size: 24px;
}

.thank-you-content p {
  color: #666;
  margin-bottom: 20px;
  font-size: 16px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  color: #666;
}

/* About Section Styles */
.about-section {
  background: linear-gradient(135deg, #4a5bcc 0%, #5a6fd8 100%);
  padding: 80px 0;
  color: white;
}

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

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-left {
  padding-right: 40px;
}

.about-heading {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  font-weight: 500;
}

.about-description {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
}

.about-description strong {
  color: white;
  font-weight: bold;
}

.about-right {
  display: flex;
  justify-content: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 100%;
  max-width: 400px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  opacity: 0.9;
  font-weight: 500;
}

/* Services Section Styles */
.services-section {
  background: #f8f9fa;
  padding: 80px 0;
}

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

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-heading {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.services-subtitle {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.service-image {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.service-title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.service-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Reasons Section Styles */
.reasons-section {
  background: #f8f9fa;
  padding: 80px 0;
}

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

.reasons-header {
  text-align: center;
  margin-bottom: 60px;
}

.reasons-heading {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
}

.reasons-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.reasons-row-reverse {
  margin-bottom: 60px;
}

.reasons-illustration {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}

.reasons-image-left,
.reasons-image-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.reasons-content-right,
.reasons-content-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.reason-number {
  font-size: 18px;
  font-weight: bold;
  color: #4a5bcc;
  min-width: 24px;
  padding-top: 5px;
}

.reason-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.reason-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.reason-text {
  flex: 1;
}

.reason-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.3;
}

.reason-description {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.reasons-cta {
  text-align: center;
  margin-top: 40px;
}

.cta-button {
  background: #4a5bcc;
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: #3a4ba8;
  transform: translateY(-2px);
}

/* Steps Section Styles */
.steps-section {
  background: #fff;
  padding: 80px 0;
}

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

.steps-header {
  text-align: center;
  margin-bottom: 60px;
}

.steps-heading {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step-card {
  text-align: center;
  padding: 40px 20px;
}

.step-icon {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-image {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.step-content {
  max-width: 300px;
  margin: 0 auto;
}

.step-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.step-description {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Testimonials Section Styles */
.testimonials-section {
  background: linear-gradient(135deg, #f5f7ff 0%, #c3cfe2 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-heading {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.2;
}

.testimonials-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.trustpilot-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.trustpilot-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trustpilot-image {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.trustpilot-star {
  color: #00b67a;
  font-size: 24px;
  font-weight: bold;
}

.trustpilot-text {
  color: #00b67a;
  font-size: 20px;
  font-weight: bold;
}

.trustpilot-rating {
  font-size: 14px;
  color: #666;
}

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

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.avatar-placeholder {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4caf50, #2196f3);
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.testimonial-stars {
  display: flex;
  align-items: center;
}

.stars-rating {
  height: 16px;
  width: auto;
}

.testimonial-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.testimonial-text strong {
  color: #333;
  font-weight: bold;
}

/* FAQ Section Styles */
.faq-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-heading {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid #e1e5e9;
  padding: 30px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #4a5bcc;
}

.faq-number {
  color: #4a5bcc;
  font-size: 18px;
  font-weight: bold;
  min-width: 40px;
}

.faq-text {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #4a5bcc;
  min-width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 60px 0 60px;
}

.faq-answer.active {
  max-height: 500px;
  padding: 20px 60px 10px 60px;
}

.faq-answer p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* CTA Section Styles */
.cta-section {
  background: #f5f5f5;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
}

.cta-bg-image {
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: cover;
  opacity: 0.1;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.cta-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-left {
  max-width: 600px;
}

.cta-heading {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.2;
}

.cta-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cta-description:last-of-type {
  margin-bottom: 0;
}

.cta-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-expert-button {
  background: #4a5bcc;
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.cta-expert-button:hover {
  background: #3a4ba8;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-heading {
    font-size: 36px;
  }

  .contact-form-container {
    padding: 30px 20px;
  }
}

/* Footer Styles */
.footer {
  background: #fff;
  padding: 60px 0 30px 0;
  border-top: 1px solid #e1e5e9;
}

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

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  max-width: 250px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 32px;
  height: 32px;
  background: #4a5bcc;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.social-icon.linkedin {
  background: #0077b5;
}

.social-icon.telegram {
  background: #0088cc;
}

.social-icon.whatsapp {
  background: #25d366;
}

.social-icon:hover {
  opacity: 0.8;
}

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

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #4a5bcc;
}

.footer-right {
  display: flex;
  flex-direction: column;
}

.business-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.business-hours p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.business-hours strong {
  color: #333;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #e1e5e9;
}

.footer-copyright p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 14px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #4a5bcc;
}

/* Brand Partners Styles */
.brands-section {
  background: #f8f9fa;
  padding: 40px 0;
  border-top: 1px solid #e1e5e9;
}

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

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  align-items: center;
}

.brand-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}

.brand-logo {
  max-height: 40px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.brand-logo:hover {
  opacity: 1;
}

.terms-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #fff;
}

.terms-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #4a5bcc;
}

.terms-title {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.terms-subtitle {
  font-size: 16px;
  color: #666;
}

.terms-content {
  line-height: 1.8;
  color: #333;
}

.terms-content h2 {
  font-size: 24px;
  font-weight: bold;
  color: #4a5bcc;
  margin: 30px 0 15px 0;
  padding-bottom: 5px;
  border-bottom: 1px solid #e1e5e9;
}

.terms-content h3 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 25px 0 10px 0;
}

.terms-content p {
  margin-bottom: 15px;
  font-size: 15px;
}

.terms-content ul {
  margin: 15px 0;
  padding-left: 30px;
}

.terms-content li {
  margin-bottom: 8px;
  font-size: 15px;
}

.company-info {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  border-left: 4px solid #4a5bcc;
}

.last-updated {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e1e5e9;
  font-style: italic;
  color: #666;
}

.back-home {
  text-align: center;
  margin: 30px 0;
}

.back-home a {
  display: inline-block;
  background: #4a5bcc;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.back-home a:hover {
  background: #3a4ba8;
}

.privacy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #fff;
}

.privacy-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #4a5bcc;
}

.privacy-title {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.privacy-subtitle {
  font-size: 16px;
  color: #666;
}

.privacy-content {
  line-height: 1.8;
  color: #333;
}

.privacy-content h2 {
  font-size: 24px;
  font-weight: bold;
  color: #4a5bcc;
  margin: 30px 0 15px 0;
  padding-bottom: 5px;
  border-bottom: 1px solid #e1e5e9;
}

.privacy-content h3 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 25px 0 10px 0;
}

.privacy-content p {
  margin-bottom: 15px;
  font-size: 15px;
}

.privacy-content ul {
  margin: 15px 0;
  padding-left: 30px;
}

.privacy-content li {
  margin-bottom: 8px;
  font-size: 15px;
}

.effective-dates {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  border-left: 4px solid #4a5bcc;
}

.contact-info {
  background: #e8f4fd;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  border-left: 4px solid #2196f3;
}

.last-updated {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e1e5e9;
  font-style: italic;
  color: #666;
}

.back-home {
  text-align: center;
  margin: 30px 0;
}

.back-home a {
  display: inline-block;
  background: #4a5bcc;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.back-home a:hover {
  background: #3a4ba8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-heading {
    font-size: 36px;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .about-left {
    padding-right: 0;
  }

  .about-heading {
    font-size: 28px;
  }

  .stats-grid {
    gap: 30px;
  }

  .stat-number {
    font-size: 36px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-heading {
    font-size: 28px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .reasons-row {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  .reasons-heading {
    font-size: 28px;
  }

  .reason-item {
    gap: 15px;
  }

  .reasons-illustration {
    max-width: 300px;
  }

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

  .steps-heading {
    font-size: 28px;
  }

  .step-card {
    padding: 30px 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials-heading {
    font-size: 28px;
  }

  .testimonial-card {
    padding: 25px;
  }

  .faq-heading {
    font-size: 28px;
  }

  .faq-question {
    gap: 15px;
  }

  .faq-text {
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 40px 0 40px;
  }

  .faq-answer.active {
    padding: 20px 40px 10px 40px;
  }

  .cta-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .cta-heading {
    font-size: 28px;
  }

  .cta-background {
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

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

@media (max-width: 480px) {
  .hero-heading {
    font-size: 28px;
  }

  .nav-title h1 {
    font-size: 20px;
  }

  .about-section {
    padding: 60px 0;
  }

  .about-heading {
    font-size: 24px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stat-number {
    font-size: 32px;
  }

  .services-section {
    padding: 60px 0;
  }

  .services-heading {
    font-size: 24px;
  }

  .service-title {
    font-size: 20px;
  }

  .reasons-section {
    padding: 60px 0;
  }

  .reasons-heading {
    font-size: 24px;
  }

  .reason-title {
    font-size: 18px;
  }

  .reason-description {
    font-size: 14px;
  }

  .cta-button {
    padding: 16px 30px;
    font-size: 14px;
  }

  .steps-section {
    padding: 60px 0;
  }

  .steps-heading {
    font-size: 24px;
  }

  .step-title {
    font-size: 18px;
  }

  .step-description {
    font-size: 14px;
  }

  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-heading {
    font-size: 24px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-text {
    font-size: 13px;
  }

  .faq-section {
    padding: 60px 0;
  }

  .faq-heading {
    font-size: 24px;
  }

  .faq-question {
    gap: 10px;
  }

  .faq-text {
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 20px 0 20px;
  }

  .faq-answer.active {
    padding: 20px 20px 10px 20px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .cta-section {
    padding: 60px 0;
  }

  .cta-heading {
    font-size: 24px;
  }

  .cta-expert-button {
    padding: 16px 30px;
    font-size: 14px;
  }

  .footer {
    padding: 40px 0 20px 0;
  }

  .footer-content {
    gap: 30px;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 15px;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .brand-item {
    height: 50px;
  }

  .brand-logo {
    max-height: 30px;
  }

  .terms-container,
  .privacy-container {
    padding: 30px 15px;
  }

  .terms-title,
  .privacy-title {
    font-size: 28px;
  }

  .terms-content h2,
  .privacy-content h2 {
    font-size: 20px;
  }

  .terms-content h3,
  .privacy-content h3 {
    font-size: 18px;
  }

  .company-info,
  .effective-dates,
  .contact-info {
    padding: 15px;
  }
}
