* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #4A90E2;
  --coral: #FF6B6B;
  --yellow: #FFE485;
  --light-blue: #E8F4F8;
  --white: #ffffff;
  --text: #333333;
  --gray: #666666;
  --light-gray: #f5f5f5;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1001;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--blue);
  padding: 0.5rem;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

.hero {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: #3a7bc8;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.btn-secondary {
  background: var(--coral);
  color: var(--white);
}

.btn-secondary:hover {
  background: #e55a5a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.hero-illustration {
  position: relative;
  animation: float 6s ease-in-out infinite;
  max-width: 600px;
  margin: 0 auto;
}

.hero-illustration svg {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--coral));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.service-card p {
  color: var(--gray);
  line-height: 1.8;
}

.features {
  background: var(--light-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 2rem;
  color: var(--blue);
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.feature-content p {
  color: var(--gray);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  background: var(--white);
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.portfolio-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--light-blue);
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.portfolio-content p {
  color: var(--gray);
}

.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--coral) 100%);
  color: var(--white);
  text-align: center;
  border-radius: 30px;
  padding: 4rem 2rem;
  margin: 0 20px;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-section .btn {
  background: var(--white);
  color: var(--blue);
}

.cta-section .btn:hover {
  background: var(--yellow);
  color: var(--text);
}

.stats {
  background: var(--light-blue);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1.1rem;
  color: var(--gray);
}

.testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 20px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--blue);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
}

.author-info h4 {
  color: var(--text);
  margin-bottom: 0.25rem;
}

.author-info p {
  color: var(--gray);
  font-size: 0.9rem;
}

.contact-section {
  background: var(--light-gray);
  padding: 5rem 0;
}

.contact-section .container {
  max-width: 1200px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(255, 228, 133, 0.05) 100%);
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid rgba(74, 144, 226, 0.1);
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
  position: relative;
  padding-bottom: 1rem;
}

.contact-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--coral));
  border-radius: 2px;
}

.contact-info > p {
  margin-bottom: 2rem;
  color: var(--gray);
  line-height: 1.8;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  flex-wrap: wrap;
}

.contact-item:hover {
  transform: translateX(5px);
  border-color: var(--blue);
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.15);
}

@media (hover: none) {
  .contact-item:hover {
    transform: none;
  }
}

.contact-icon {
  font-size: 2rem;
  color: var(--blue);
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--blue) 0%, var(--coral) 100%);
}

.contact-item-content h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: 600;
}

.contact-item-content p {
  color: var(--gray);
  line-height: 1.7;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border: 1px solid rgba(74, 144, 226, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--coral), var(--yellow));
}

.contact-form h3 {
  color: var(--text);
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.contact-form h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--coral));
  border-radius: 2px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--light-gray);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--gray);
  cursor: pointer;
}

.checkbox-group a {
  color: var(--blue);
  text-decoration: underline;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 3rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border: 3px solid var(--white);
  position: relative;
}

.map-container::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, var(--blue), var(--coral), var(--yellow));
  border-radius: 20px;
  z-index: -1;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.about-text p {
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.process-step h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.process-step p {
  color: var(--gray);
}

.thankyou-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.success-message {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
  animation: scaleIn 0.5s ease;
  box-shadow: 0 10px 40px rgba(74, 144, 226, 0.3);
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.success-actions .btn {
  margin: 0 auto;
}

.thankyou-services {
  margin-top: 4rem;
}

.thankyou-services .services-grid {
  margin-top: 3rem;
}

.thankyou-contact {
  margin-top: 4rem;
}

.thankyou-contact .features-grid {
  margin-top: 2rem;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.success-message h1 {
  font-size: 2.5rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.success-message p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.policy-content h1 {
  font-size: 2.5rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.policy-content h2 {
  font-size: 2rem;
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content p {
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-content ul {
  margin-bottom: 1rem;
  margin-left: 2rem;
}

.policy-content li {
  color: var(--gray);
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.policy-content a {
  color: var(--blue);
  text-decoration: underline;
}

.last-updated {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 2rem;
}

.faq-section {
  background: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid var(--light-gray);
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--blue);
  box-shadow: 0 5px 20px rgba(74, 144, 226, 0.15);
}

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--light-gray);
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--blue);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--light-gray);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1.5rem;
}

.faq-answer p {
  color: var(--gray);
  line-height: 1.8;
  margin: 0;
}

.timeline-section {
  background: var(--light-gray);
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--coral));
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--white);
  border: 4px solid var(--blue);
  border-radius: 50%;
  z-index: 2;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
  width: 30px;
  height: 30px;
  border-width: 5px;
}

.timeline-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  width: 45%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  margin-left: 0;
  transform: translateX(-50%);
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  margin-right: 0;
  transform: translateX(50%);
}

.timeline-content:hover {
  transform: translateX(0) scale(1.05);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.timeline-content h3 {
  color: var(--text);
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.timeline-content p {
  color: var(--gray);
  line-height: 1.7;
}

.comparison-section {
  background: var(--light-gray);
}

.comparison-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-side {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.comparison-side:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.comparison-before {
  border-left: 5px solid var(--gray);
}

.comparison-after {
  border-left: 5px solid var(--blue);
}

.comparison-side h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.comparison-list {
  list-style: none;
  padding: 0;
}

.comparison-list li {
  padding: 1rem 0;
  color: var(--gray);
  line-height: 1.6;
  border-bottom: 1px solid var(--light-gray);
  position: relative;
  padding-left: 2rem;
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-before .comparison-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: bold;
  font-size: 1.2rem;
}

.comparison-after .comparison-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: bold;
  font-size: 1.2rem;
}

.comparison-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-arrow {
  width: 50px;
  height: 50px;
  background: var(--blue);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-arrow::after {
  content: '→';
  color: var(--white);
  font-size: 1.5rem;
  font-weight: bold;
}

.team-section {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.team-member {
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-photo {
  margin-bottom: 1.5rem;
}

.team-placeholder {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--blue), var(--coral));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0 auto;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.team-member:hover .team-placeholder {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.team-info h3 {
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.team-description {
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

.guarantee-section {
  background: var(--light-gray);
  padding: 5rem 0;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.guarantee-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--blue);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.guarantee-card:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-left-width: 6px;
}

.guarantee-card h3 {
  color: var(--text);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.guarantee-card p {
  color: var(--gray);
  line-height: 1.7;
}

footer {
  background: var(--text);
  color: var(--white);
  padding: 5rem 0 1rem;
  margin-top: 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-section p {
  opacity: 0.8;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0.8;
}

.footer-bottom-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.footer-bottom-links a:hover {
  opacity: 1;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
  padding: 1.5rem;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-popup-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.privacy-popup-text {
  flex: 1;
  min-width: 250px;
}

.privacy-popup-text p {
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.privacy-popup-text a {
  color: var(--blue);
  text-decoration: underline;
}

.privacy-popup-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    gap: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
  }

  .nav-links.active {
    max-height: 500px;
    padding: 2rem;
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.active li:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-links.active li:nth-child(2) {
    transition-delay: 0.15s;
  }

  .nav-links.active li:nth-child(3) {
    transition-delay: 0.2s;
  }

  .nav-links.active li:nth-child(4) {
    transition-delay: 0.25s;
  }

  .nav-links.active li:nth-child(5) {
    transition-delay: 0.3s;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 0.5rem 0;
    font-size: 1.1rem;
  }

  .nav-links a::after {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .hero-illustration {
    max-width: 400px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info {
    padding: 2rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .policy-content {
    max-width: 100%;
    padding: 2rem 1rem;
  }

  .policy-content h1 {
    font-size: 2.25rem;
  }

  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 1.75rem;
  }

  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 1.25rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .services-grid,
  .portfolio-grid,
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .nav-links {
    top: 65px;
  }

  .logo {
    font-size: 1.3rem;
  }

  .contact-content {
    gap: 2.5rem;
  }

  .contact-info {
    padding: 2.25rem;
  }

  .contact-form {
    padding: 2.25rem;
  }

  .contact-item {
    padding: 1.125rem;
  }

  .map-container {
    height: 350px;
  }

  .contact-section {
    padding: 4rem 0;
  }

  .policy-content {
    padding: 2rem 0.5rem;
  }

  .policy-content h1 {
    font-size: 2.25rem;
  }

  .policy-content h2 {
    font-size: 1.75rem;
  }

  .policy-content h3 {
    font-size: 1.35rem;
  }

  .policy-content p,
  .policy-content li {
    font-size: 1rem;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px;
    transform: translateX(0);
  }

  .timeline-marker {
    left: 30px;
  }

  .comparison-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .comparison-divider {
    transform: rotate(90deg);
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .success-message {
    padding: 3rem 1.5rem;
  }

  .success-icon {
    width: 90px;
    height: 90px;
    font-size: 2.75rem;
  }

  .success-message h1 {
    font-size: 2.25rem;
  }

  .success-message p {
    font-size: 1.05rem;
  }

  .thankyou-section {
    padding: 3rem 0;
    min-height: 60vh;
  }

  .thankyou-services {
    margin-top: 3rem;
  }

  .thankyou-services .services-grid {
    margin-top: 2rem;
  }

  .thankyou-contact {
    margin-top: 3rem;
  }

  .thankyou-contact .features-grid {
    margin-top: 1.75rem;
  }
}

@media (max-width: 640px) {
  .contact-section {
    padding: 3rem 0;
  }
  .hero {
    padding: 2.5rem 0;
  }

  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-illustration {
    max-width: 300px;
    animation: none;
  }

  .hero-text > div {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .hero-text .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  section {
    padding: 3rem 0;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 1.25rem;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-marker {
    left: 20px;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    width: calc(100% - 70px);
    margin-left: 70px;
    transform: translateX(0);
  }

  .timeline-content {
    padding: 1.5rem;
  }

  .timeline-content h3 {
    font-size: 1.2rem;
  }

  .comparison-container {
    grid-template-columns: 1fr;
  }

  .comparison-divider {
    transform: rotate(90deg);
  }

  .comparison-side {
    padding: 2rem;
  }

  .comparison-side h3 {
    font-size: 1.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-placeholder {
    width: 120px;
    height: 120px;
    font-size: 2rem;
  }

  .guarantee-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-card {
    padding: 1.75rem;
  }

  .guarantee-card h3 {
    font-size: 1.2rem;
  }

  .success-message {
    padding: 2.5rem 1.25rem;
  }

  .success-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .success-message h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .success-message p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .success-message > div {
    flex-direction: column;
    gap: 0.75rem;
  }

  .success-message .btn {
    width: 100%;
    max-width: 300px;
  }

  .success-actions {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .success-actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .thankyou-section {
    padding: 2.5rem 0;
    min-height: 50vh;
  }

  .thankyou-services {
    margin-top: 2.5rem;
  }

  .thankyou-services .services-grid {
    margin-top: 2rem;
  }

  .thankyou-contact {
    margin-top: 2.5rem;
  }

  .thankyou-contact .features-grid {
    margin-top: 1.5rem;
  }

  .policy-content {
    padding: 1.5rem 0.75rem;
  }

  .policy-content h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .policy-content h2 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    line-height: 1.4;
  }

  .policy-content h3 {
    font-size: 1.25rem;
    margin-top: 1rem;
  }

  .policy-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.875rem;
  }

  .policy-content ul {
    margin-left: 1.5rem;
    margin-bottom: 0.875rem;
  }

  .policy-content li {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.4rem;
  }

  .last-updated {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .services-grid,
  .features-grid,
  .portfolio-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .cta-section {
    padding: 3rem 1.5rem;
  }

  .cta-section h2 {
    font-size: 1.75rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .stat-item h3 {
    font-size: 2.5rem;
  }

  .privacy-popup-content {
    flex-direction: column;
    align-items: stretch;
  }

  .privacy-popup-actions {
    justify-content: center;
  }

  header {
    padding: 0;
  }

  nav {
    padding: 0.75rem 0;
  }

  .mobile-menu-toggle {
    font-size: 1.6rem;
  }

  .contact-info {
    padding: 1.75rem;
  }

  .contact-info h3 {
    font-size: 1.75rem;
  }

  .contact-form {
    padding: 1.75rem;
  }

  .contact-form h3 {
    font-size: 1.5rem;
  }

  .contact-item {
    padding: 1rem;
    flex-direction: row;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1.75rem;
  }

  .contact-item-content h4 {
    font-size: 1rem;
  }

  .contact-item-content p {
    font-size: 0.95rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .map-container {
    height: 350px;
  }
}

@media (max-width: 420px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 2rem 0;
  }

  .hero-text h1 {
    font-size: 1.75rem;
    line-height: 1.4;
  }

  .hero-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-content {
    gap: 1.5rem;
  }

  .hero-illustration {
    max-width: 250px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .service-card,
  .contact-form {
    padding: 1.5rem;
  }

  .logo {
    font-size: 1.25rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 1rem;
  }

  .timeline::before {
    left: 15px;
  }

  .timeline-marker {
    left: 15px;
    width: 15px;
    height: 15px;
    border-width: 3px;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    width: calc(100% - 55px);
    margin-left: 55px;
  }

  .timeline-content {
    padding: 1.25rem;
  }

  .timeline-content h3 {
    font-size: 1.1rem;
  }

  .timeline-content p {
    font-size: 0.9rem;
  }

  .comparison-side {
    padding: 1.5rem;
  }

  .comparison-side h3 {
    font-size: 1.35rem;
  }

  .comparison-list li {
    font-size: 0.9rem;
  }

  .team-placeholder {
    width: 100px;
    height: 100px;
    font-size: 1.75rem;
  }

  .team-info h3 {
    font-size: 1.25rem;
  }

  .guarantee-card {
    padding: 1.5rem;
  }

  .guarantee-card h3 {
    font-size: 1.15rem;
  }

  .guarantee-card p {
    font-size: 0.9rem;
  }

  .success-message {
    padding: 2rem 1rem;
  }

  .success-icon {
    width: 70px;
    height: 70px;
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
  }

  .success-message h1 {
    font-size: 1.75rem;
    line-height: 1.35;
  }

  .success-message p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .success-message .btn {
    max-width: 280px;
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .success-actions {
    flex-direction: column;
    align-items: center;
  }

  .success-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .thankyou-section {
    padding: 2rem 0;
    min-height: auto;
  }

  .thankyou-services {
    margin-top: 2rem;
  }

  .thankyou-services .services-grid {
    margin-top: 1.5rem;
  }

  .thankyou-contact {
    margin-top: 2rem;
  }

  .thankyou-contact .features-grid {
    margin-top: 1.25rem;
  }

  .policy-content {
    padding: 1.25rem 0.5rem;
  }

  .policy-content h1 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 0.875rem;
  }

  .policy-content h2 {
    font-size: 1.35rem;
    margin-top: 1.25rem;
    margin-bottom: 0.875rem;
    line-height: 1.4;
  }

  .policy-content h3 {
    font-size: 1.15rem;
    margin-top: 0.875rem;
    margin-bottom: 0.625rem;
  }

  .policy-content p {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 0.75rem;
  }

  .policy-content ul {
    margin-left: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .policy-content li {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 0.35rem;
  }

  .last-updated {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
  }

  .contact-info {
    padding: 1.5rem;
    border-radius: 15px;
  }

  .contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .contact-info h3::after {
    width: 50px;
    height: 3px;
  }

  .contact-info > p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
    border-radius: 15px;
  }

  .contact-form h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }

  .contact-form h3::after {
    width: 50px;
    height: 3px;
  }

  .contact-item {
    padding: 0.875rem;
    margin-bottom: 1.25rem;
    border-radius: 12px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    border-radius: 10px;
  }

  .contact-item-content h4 {
    font-size: 0.95rem;
  }

  .contact-item-content p {
    font-size: 0.9rem;
  }

  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-radius: 10px;
  }

  .checkbox-group {
    margin-bottom: 1.25rem;
  }

  .checkbox-group label {
    font-size: 0.85rem;
  }

  .map-container {
    height: 300px;
    border-radius: 15px;
    margin-top: 2rem;
  }

  .contact-section {
    padding: 2.5rem 0;
  }
}

@media (max-width: 320px) {
  .hero {
    padding: 1.5rem 0;
  }

  .hero-text h1 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .hero-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .hero-content {
    gap: 1rem;
  }

  .hero-illustration {
    max-width: 220px;
  }

  .hero-text .btn {
    width: 100%;
    max-width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .container {
    padding: 0 12px;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 0.875rem;
  }

  .faq-toggle {
    font-size: 1.25rem;
  }

  .timeline::before {
    left: 10px;
  }

  .timeline-marker {
    left: 10px;
    width: 12px;
    height: 12px;
    border-width: 2px;
  }

  .timeline-item {
    margin-bottom: 2rem;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    width: calc(100% - 45px);
    margin-left: 45px;
  }

  .timeline-content {
    padding: 1rem;
  }

  .timeline-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .timeline-content p {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .comparison-side {
    padding: 1.25rem;
  }

  .comparison-side h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .comparison-list li {
    font-size: 0.85rem;
    padding: 0.75rem 0;
    padding-left: 1.75rem;
  }

  .comparison-arrow {
    width: 40px;
    height: 40px;
  }

  .comparison-arrow::after {
    font-size: 1.25rem;
  }

  .team-placeholder {
    width: 90px;
    height: 90px;
    font-size: 1.5rem;
  }

  .team-info h3 {
    font-size: 1.15rem;
  }

  .team-role {
    font-size: 0.95rem;
  }

  .team-description {
    font-size: 0.85rem;
  }

  .guarantee-card {
    padding: 1.25rem;
  }

  .guarantee-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
  }

  .guarantee-card p {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .success-message {
    padding: 1.5rem 0.75rem;
  }

  .success-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .success-message h1 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 0.875rem;
  }

  .success-message p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .success-message > div {
    gap: 0.625rem;
  }

  .success-message .btn {
    max-width: 100%;
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }

  .success-actions {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .success-actions .btn {
    width: 100%;
    max-width: 100%;
  }

  .thankyou-section {
    padding: 1.5rem 0;
  }

  .thankyou-services {
    margin-top: 1.5rem;
  }

  .thankyou-services .services-grid {
    margin-top: 1.25rem;
  }

  .thankyou-services .section-header h2 {
    font-size: 1.4rem;
  }

  .thankyou-contact {
    margin-top: 1.5rem;
  }

  .thankyou-contact .features-grid {
    margin-top: 1rem;
  }

  .thankyou-contact .section-header h2 {
    font-size: 1.4rem;
  }

  .policy-content {
    padding: 1rem 0.25rem;
  }

  .policy-content h1 {
    font-size: 1.5rem;
    line-height: 1.35;
    margin-bottom: 0.75rem;
  }

  .policy-content h2 {
    font-size: 1.25rem;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }

  .policy-content h3 {
    font-size: 1.05rem;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .policy-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.7rem;
  }

  .policy-content ul {
    margin-left: 1rem;
    margin-bottom: 0.7rem;
  }

  .policy-content li {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.3rem;
  }

  .last-updated {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .contact-section {
    padding: 2rem 0;
  }

  .contact-content {
    gap: 1.5rem;
  }

  .contact-info {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .contact-info h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.75rem;
  }

  .contact-info h3::after {
    width: 40px;
    height: 3px;
  }

  .contact-info > p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
  }

  .contact-form {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .contact-form h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
  }

  .contact-form h3::after {
    width: 40px;
    height: 3px;
  }

  .contact-item {
    padding: 0.75rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    gap: 1rem;
  }

  .contact-icon {
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
    border-radius: 8px;
  }

  .contact-item-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
  }

  .contact-item-content p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-group label {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.7rem 0.875rem;
    font-size: 0.85rem;
    border-radius: 8px;
  }

  .form-group textarea {
    min-height: 100px;
  }

  .checkbox-group {
    margin-bottom: 1rem;
  }

  .checkbox-group label {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .contact-form .btn-primary {
    font-size: 0.95rem;
    padding: 0.875rem 1.5rem;
  }

  .contact-content {
    gap: 1.25rem;
  }

  .map-container {
    height: 250px;
    border-radius: 12px;
    margin-top: 1.5rem;
  }
}
