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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Navigation Bar */
.navbar {
  background-color: #ffffff;
  padding: 20px 0;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  cursor: pointer;
}

.brand-icon {
  font-size: 28px;
}

.brand-name {
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  text-decoration: none;
  color: #4b5563;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #1a1a1a;
}

.btn-contact {
  text-decoration: none;
  padding: 10px 24px;
  border: 2px solid #1a1a1a;
  border-radius: 6px;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background-color: #1a1a1a;
  color: #ffffff;
}

/* Hero Section */
.hero {
  background-color: #f9fafb;
  padding: 80px 0 100px;
}

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

.hero-image {
  width: 100%;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

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

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: #1e293b;
  margin-bottom: 20px;
}

.text-blue {
  color: #3b82f6;
}

.hero-subtitle {
  font-size: 24px;
  color: #3b82f6;
  font-weight: 500;
  margin-bottom: 40px;
}

.hero-features {
  list-style: none;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 17px;
  color: #334155;
  line-height: 1.6;
}

.checkmark {
  background-color: #3b82f6;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: bold;
  margin-top: 2px;
}

.feature-item strong {
  font-weight: 700;
  color: #1e293b;
}

.btn-primary {
  background-color: #1e293b;
  color: white;
  padding: 16px 40px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.btn-primary:hover {
  background-color: #334155;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-stats {
  font-size: 15px;
  color: #64748b;
}

.stats-number {
  color: #3b82f6;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-image {
    order: 2;
  }

  .hero-content {
    order: 1;
    max-width: 100%;
  }

  .hero-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-link {
    font-size: 14px;
  }

  .hero {
    padding: 60px 0;
  }

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

  .hero-subtitle {
    font-size: 20px;
  }

  .feature-item {
    font-size: 15px;
  }

  .btn-primary {
    padding: 14px 32px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 20px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-link {
    display: none;
  }

  .hero-title {
    font-size: 32px;
  }
}

/* How it Works Section */
.how-it-works {
  background-color: #ffffff;
  padding: 100px 0;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 60px;
  text-align: left;
}

.how-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}

.how-image {
  width: 100%;
  position: sticky;
  top: 100px;
}

.how-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.how-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step {
  margin-bottom: 20px;
}

.step-title {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.step-description {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.step-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #334155;
}

.feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: bold;
}

.feature-icon.green {
  background-color: #10b981;
  color: white;
}

.feature-icon.yellow {
  background-color: #fbbf24;
  color: white;
}

.how-cta {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.btn-dark {
  background-color: #1e293b;
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.btn-dark:hover {
  background-color: #334155;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-premium {
  background-color: white;
  color: #1e293b;
  padding: 14px 32px;
  border: 2px solid #1e293b;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.btn-premium:hover {
  background-color: #f9fafb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* How it Works - Responsive */
@media (max-width: 1024px) {
  .how-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .how-image {
    position: relative;
    top: 0;
  }

  .step-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 60px 0;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

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

  .how-cta {
    flex-direction: column;
  }

  .btn-dark,
  .btn-premium {
    width: 100%;
  }
}

/* Why Choose Section */
.why-choose {
  background-color: #f9fafb;
  padding: 100px 0;
}

.why-title {
  font-size: 42px;
  font-weight: 800;
  color: #1e293b;
  text-align: center;
  margin-bottom: 20px;
}

.why-subtitle {
  font-size: 18px;
  color: #64748b;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.why-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-icon {
  width: 56px;
  height: 56px;
  background-color: #e0f2fe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.card-icon img {
  width: 28px;
  height: 28px;
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  line-height: 1.3;
}

.card-description {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

/* Why Choose - Responsive */
@media (max-width: 1024px) {
  .why-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .why-choose {
    padding: 60px 0;
  }

  .why-title {
    font-size: 32px;
  }

  .why-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .why-card {
    padding: 32px 24px;
  }

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

  .card-description {
    font-size: 15px;
  }
}

/* Career Growth Section */
.career-growth {
  background-color: #ffffff;
  padding: 100px 0;
}

.growth-title {
  font-size: 42px;
  font-weight: 800;
  color: #1e293b;
  text-align: center;
  margin-bottom: 20px;
}

.growth-subtitle {
  font-size: 18px;
  color: #64748b;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.growth-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.growth-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.growth-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.growth-icon {
  width: 48px;
  height: 48px;
  background-color: #e0f2fe;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.growth-icon img {
  width: 24px;
  height: 24px;
}

.growth-feature-content {
  flex: 1;
}

.growth-feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.growth-feature-description {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

/* AI Coach Card */
.growth-coach {
  position: sticky;
  top: 100px;
}

.coach-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.coach-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #e0f2fe;
}

.coach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coach-title {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.coach-description {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
}

.coach-benefits {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
}

.coach-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #334155;
}

.benefit-check {
  background-color: #10b981;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: bold;
}

.btn-gradient {
  width: 100%;
  background: linear-gradient(90deg, #3b82f6 0%, #10b981 100%);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Career Growth - Responsive */
@media (max-width: 1024px) {
  .growth-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .growth-coach {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .career-growth {
    padding: 60px 0;
  }

  .growth-title {
    font-size: 32px;
  }

  .growth-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .growth-feature {
    gap: 16px;
  }

  .growth-icon {
    width: 40px;
    height: 40px;
  }

  .growth-icon img {
    width: 20px;
    height: 20px;
  }

  .growth-feature-title {
    font-size: 18px;
  }

  .growth-feature-description {
    font-size: 15px;
  }

  .coach-card {
    padding: 32px 24px;
  }

  .coach-title {
    font-size: 22px;
  }
}

/* CV Review Section */
.cv-review {
  background-color: #f9fafb;
  padding: 100px 0;
}

.cv-review-box {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 60px 80px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.cv-title {
  font-size: 42px;
  font-weight: 800;
  color: #1e293b;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

.text-green {
  color: #10b981;
}

.cv-subtitle {
  font-size: 18px;
  color: #64748b;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 32px;
}

.btn-cv {
  display: block;
  margin: 0 auto 40px;
  background-color: #1e293b;
  color: white;
  padding: 16px 40px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.btn-cv:hover {
  background-color: #334155;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.cv-features {
  margin-bottom: 40px;
}

.cv-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.cv-icon {
  width: 40px;
  height: 40px;
  background-color: #f1f5f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cv-icon img {
  width: 20px;
  height: 20px;
}

.cv-feature-content {
  flex: 1;
}

.cv-feature-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.cv-feature-description {
  font-size: 15px;
  color: #64748b;
  line-height: 1.5;
}

/* Testimonial Card */
.testimonial-card {
  background-color: #f9fafb;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
  text-align: center;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(79%) sepia(66%) saturate(425%)
    hue-rotate(359deg) brightness(102%) contrast(101%);
}

.testimonial-text {
  font-size: 17px;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  font-size: 15px;
  color: #64748b;
}

.testimonial-author strong {
  color: #1e293b;
  font-weight: 600;
}

.testimonial-author em {
  font-style: normal;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #64748b;
}

.badge-check {
  color: #10b981;
  font-size: 16px;
  font-weight: bold;
}

/* Stats Section */
.stats-section {
  background-color: #1e3a4c;
  border-radius: 16px;
  padding: 40px 32px;
  margin-top: 40px;
  text-align: center;
}

.stats-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px;
}

.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid #e5e7eb;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: #64748b;
  font-weight: 500;
}

/* CV Review - Responsive */
@media (max-width: 768px) {
  .cv-review {
    padding: 60px 0;
  }

  .cv-review-box {
    padding: 40px 30px;
  }

  .cv-title {
    font-size: 32px;
  }

  .cv-subtitle {
    font-size: 16px;
  }

  .btn-cv {
    padding: 14px 32px;
    font-size: 16px;
  }

  .cv-feature-title {
    font-size: 16px;
  }

  .cv-feature-description {
    font-size: 14px;
  }

  .testimonial-card {
    padding: 24px;
  }

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

  .trust-badges {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .stats-section {
    padding: 32px 24px;
  }

  .stats-title {
    font-size: 22px;
  }

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 0 24px 0;
  }

  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

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

  .stat-label {
    font-size: 14px;
  }
}

/* Popular Jobs Section */
.popular-jobs {
  background-color: #ffffff;
  padding: 80px 0;
}

.jobs-title {
  font-size: 36px;
  font-weight: 800;
  color: #1e293b;
  text-align: center;
  margin-bottom: 40px;
}

.jobs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.job-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background-color: #f1f5f9;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  cursor: default;
}

.job-tag:hover {
  background-color: #e0f2fe;
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.job-tag .tag-count {
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
}

/* Industries Section */
.industries {
  background-color: #f9fafb;
  padding: 80px 0;
}

.industries-title {
  font-size: 36px;
  font-weight: 800;
  color: #1e293b;
  text-align: center;
  margin-bottom: 40px;
}

.industries-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background-color: #ffffff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  cursor: default;
}

.industry-tag:hover {
  background-color: #e0f2fe;
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.industry-tag .tag-count {
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
}

/* Jobs & Industries - Responsive */
@media (max-width: 768px) {
  .popular-jobs,
  .industries {
    padding: 60px 0;
  }

  .jobs-title,
  .industries-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .jobs-tags,
  .industries-tags {
    gap: 8px;
  }

  .job-tag,
  .industry-tag {
    padding: 10px 16px;
    font-size: 12px;
  }

  .job-tag .tag-count,
  .industry-tag .tag-count {
    font-size: 11px;
  }
}

/* Testimonials Section */
.testimonials {
  background-color: #ffffff;
  padding: 80px 0;
}

.testimonials-title {
  font-size: 36px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 50px;
}

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

.testimonial-box {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-box:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

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

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  flex-shrink: 0;
}

.avatar-orange {
  background-color: #fed7aa;
  color: #7c2d12;
}

.avatar-light-blue {
  background-color: #dbeafe;
  color: #1e40af;
}

.avatar-light {
  background-color: #e0e7ff;
  color: #3730a3;
}

.avatar-img {
  background-color: transparent;
  overflow: hidden;
}

.avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.rating {
  display: flex;
  gap: 2px;
}

.rating img {
  width: 14px;
  height: 14px;
  filter: brightness(0) saturate(100%) invert(79%) sepia(66%) saturate(425%)
    hue-rotate(359deg) brightness(102%) contrast(101%);
}

.review-title {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
  line-height: 1.4;
}

.review-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}

.read-more {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.read-more img {
  width: 16px;
  height: 16px;
}

/* Testimonials - Responsive */
@media (max-width: 1200px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }

  .testimonials-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

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

  .testimonial-box {
    padding: 20px;
  }

  .review-title {
    font-size: 14px;
  }

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

/* Quote CTA Section */
.quote-cta {
  background-image: url("../images/remote-comunity-section.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0;
  position: relative;
}

.quote-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.quote-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.quote-text {
  font-size: 32px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 24px;
}

.quote-description {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.quote-author {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 32px;
}

.btn-signup {
  background-color: #1e293b;
  color: white;
  padding: 16px 40px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.btn-signup:hover {
  background-color: #334155;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Quote CTA - Responsive */
@media (max-width: 768px) {
  .quote-cta {
    padding: 80px 0;
  }

  .quote-content {
    padding: 40px 30px;
  }

  .quote-text {
    font-size: 24px;
  }

  .quote-description {
    font-size: 15px;
  }

  .btn-signup {
    width: 100%;
    padding: 14px 32px;
    font-size: 16px;
  }
}

/* Premium Features Section */
.premium-features {
  background-color: #ffffff;
  padding: 100px 0;
}

.premium-title {
  font-size: 42px;
  font-weight: 800;
  color: #1e293b;
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.title-icon {
  width: 48px;
  height: 48px;
}

.text-orange {
  color: #f97316;
}

.premium-subtitle {
  font-size: 18px;
  color: #64748b;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.feature-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: #3b82f6;
}

.feature-icon-box {
  width: 56px;
  height: 56px;
  background-color: #f1f5f9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon-box img {
  width: 28px;
  height: 28px;
}

.feature-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-card-text {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

.feature-card-text strong {
  font-weight: 700;
  color: #1e293b;
}

/* Premium Features - Responsive */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .premium-features {
    padding: 60px 0;
  }

  .premium-title {
    font-size: 28px;
    flex-direction: column;
    gap: 8px;
  }

  .title-icon {
    width: 40px;
    height: 40px;
  }

  .premium-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-card {
    padding: 24px;
  }

  .feature-card-title {
    font-size: 18px;
  }

  .feature-card-text {
    font-size: 14px;
  }
}

/* Pricing CTA Section */
.pricing-cta {
  background-color: #f0fdf4;
  padding: 100px 0;
}

.pricing-title {
  font-size: 42px;
  font-weight: 800;
  color: #1e293b;
  text-align: center;
  margin-bottom: 20px;
}

.pricing-description {
  font-size: 18px;
  color: #64748b;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.pricing-text {
  font-size: 20px;
  color: #1e293b;
  margin-bottom: 12px;
}

.price {
  font-size: 28px;
  font-weight: 800;
  color: #f59e0b;
}

.pricing-guarantee {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 28px;
}

.btn-upgrade {
  background-color: #f59e0b;
  color: #ffffff;
  padding: 16px 40px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  text-align: center;
}

.btn-upgrade img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.btn-upgrade:hover {
  background-color: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

/* Pricing CTA - Responsive */
@media (max-width: 768px) {
  .pricing-cta {
    padding: 60px 0;
  }

  .pricing-title {
    font-size: 32px;
  }

  .pricing-description {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-text {
    font-size: 18px;
  }

  .price {
    font-size: 24px;
  }

  .btn-upgrade {
    width: 100%;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
  }
}

/* Contact Form Section */
.contact-form-section {
  background-color: #f9fafb;
  padding: 100px 0;
}

.form-title {
  font-size: 42px;
  font-weight: 800;
  color: #1e293b;
  text-align: center;
  margin-bottom: 20px;
}

.form-subtitle {
  font-size: 18px;
  color: #64748b;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cv-form {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.form-group label {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 15px;
  color: #1e293b;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
  resize: vertical;
  font-family: inherit;
}

.btn-submit {
  width: 100%;
  background-color: #1e293b;
  color: white;
  padding: 16px 40px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: #334155;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #ffffff;
  padding: 50px;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: slideIn 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 32px;
  font-weight: 300;
  color: #64748b;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #1e293b;
}

.modal-icon {
  width: 80px;
  height: 80px;
  background-color: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  margin: 0 auto 24px;
}

.modal-title {
  font-size: 32px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
}

.modal-text {
  font-size: 18px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 32px;
}

.btn-modal-close {
  background-color: #1e293b;
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-modal-close:hover {
  background-color: #334155;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Contact Form - Responsive */
@media (max-width: 768px) {
  .contact-form-section {
    padding: 60px 0;
  }

  .form-title {
    font-size: 32px;
  }

  .form-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .cv-form {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .modal-content {
    padding: 40px 30px;
  }

  .modal-title {
    font-size: 28px;
  }

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

/* ===================================
   Footer Section
   =================================== */

.footer {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #ffffff;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
}

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

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

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

.footer-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-info li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive - Tablet */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
    margin-top: 60px;
  }

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

/* Responsive - Mobile */
@media (max-width: 480px) {
  .footer {
    padding: 30px 0 15px;
    margin-top: 40px;
  }

  .footer-heading {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .footer-links li a,
  .info-value {
    font-size: 14px;
  }

  .info-label {
    font-size: 12px;
  }
}

/* ===================================
   About Page Styles
   =================================== */

.about-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  padding: 100px 0 80px;
  text-align: center;
  color: #ffffff;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

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

.gray-bg {
  background-color: #f8fafc;
}

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

.about-content-wrapper.reverse {
  direction: rtl;
}

.about-content-wrapper.reverse > * {
  direction: ltr;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 24px;
  line-height: 1.2;
}

.section-title.text-center {
  text-align: center;
  margin-bottom: 16px;
}

.about-paragraph {
  font-size: 17px;
  line-height: 1.8;
  color: #475569;
  margin: 0;
}

.about-intro {
  font-size: 18px;
  color: #64748b;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* About Features Grid */
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.about-feature-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 22px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
}

.feature-description {
  font-size: 16px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* Pros and Cons Section */
.pros-cons-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.pros-section,
.cons-section {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.subsection-title {
  font-size: 24px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-check {
  color: #10b981;
  font-size: 28px;
  font-weight: bold;
}

.icon-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #3b82f6;
  color: #ffffff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  font-style: normal;
}

.advantage-list,
.consideration-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.advantage-list li,
.consideration-list li {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  padding-left: 30px;
  position: relative;
}

.advantage-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
  font-size: 20px;
}

.consideration-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: #3b82f6;
  font-weight: bold;
  font-size: 20px;
}

/* Features Showcase */
.features-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.showcase-item {
  text-align: center;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.showcase-item:hover {
  transform: translateY(-5px);
}

.showcase-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: brightness(0) saturate(100%) invert(42%) sepia(96%) saturate(1756%)
    hue-rotate(205deg) brightness(102%) contrast(91%);
}

.showcase-title {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
}

.showcase-text {
  font-size: 16px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* Statistics Showcase */
.stats-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: #64748b;
  font-weight: 500;
}

/* About CTA Section */
.about-cta-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.about-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-text {
  font-size: 18px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.btn-primary-large {
  background: #ffffff;
  color: #3b82f6;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary-large:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary-large {
  background: transparent;
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary-large:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .about-title {
    font-size: 40px;
  }

  .section-title {
    font-size: 32px;
  }

  .about-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 60px 0 50px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-subtitle {
    font-size: 18px;
  }

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

  .about-content-wrapper,
  .about-content-wrapper.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }

  .section-title {
    font-size: 28px;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .pros-cons-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

  .cta-title {
    font-size: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary-large,
  .btn-secondary-large {
    width: 100%;
    max-width: 300px;
  }
}

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

  .section-title {
    font-size: 24px;
  }

  .about-paragraph,
  .about-intro {
    font-size: 16px;
  }

  .feature-title,
  .subsection-title {
    font-size: 20px;
  }

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

  .cta-title {
    font-size: 26px;
  }
}

/* ===================================
   Contact Page Styles
   =================================== */

.contact-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  padding: 80px 0 60px;
  text-align: center;
  color: #ffffff;
}

.contact-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.contact-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.contact-main-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

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

/* Contact Info Box */
.contact-info-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: fit-content;
}

.contact-info-title {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.contact-info-subtitle {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.contact-info-text {
  flex: 1;
}

.info-item-title {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.info-item-value {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Contact Form Box */
.contact-form-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 30px;
}

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

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 0 40px;
  }

  .contact-title {
    font-size: 36px;
  }

  .contact-subtitle {
    font-size: 16px;
  }

  .contact-main-section {
    padding: 50px 0;
  }

  .contact-info-box,
  .contact-form-box {
    padding: 32px 24px;
  }

  .contact-info-title,
  .contact-form-title {
    font-size: 24px;
  }

  .contact-info-items {
    gap: 24px;
  }
}

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

  .contact-info-box,
  .contact-form-box {
    padding: 24px 20px;
  }

  .contact-info-title,
  .contact-form-title {
    font-size: 22px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }
}
