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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

/* Header and Navigation */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c3e50;
}

.logo img {
  width: 40px;
  height: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #1ead1c;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

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

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: #1ead1c;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.cta-button:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

/* Sections */
section {
  padding: 80px 0;
}

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

.section-header h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  padding: 120px 0 80px;
  margin-top: 80px;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Grid Layouts */
.info-grid,
.benefits-grid,
.services-grid,
.achievements-grid,
.testimonials-grid,
.advantages-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.achievements-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Cards */
.info-card,
.benefit-item,
.service-card,
.testimonial-card,
.advantage-card,
.contact-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

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

.info-card img,
.benefit-item img,
.advantage-card img,
.contact-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.info-card h3,
.benefit-item h3,
.advantage-card h3,
.contact-card h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.info-card p,
.benefit-item p,
.advantage-card p {
  color: #666;
  line-height: 1.6;
}

/* Service Cards */
.service-card {
  text-align: left;
}

.service-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.service-card .rating {
  color: #f39c12;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  margin-bottom: 15px;
}

.service-card .price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #1ead1c;
}

/* Achievements */
.achievement-item {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 15px;
}

.achievement-number {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.achievement-item h3 {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Testimonials */
.testimonial-card {
  text-align: left;
  background: #f8f9fa;
  border-left: 4px solid #1ead1c;
}

.testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #555;
}

.testimonial-author strong {
  color: #2c3e50;
  font-size: 1.1rem;
}

.testimonial-author span {
  color: #666;
  font-size: 0.9rem;
}

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.newsletter-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.newsletter h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.newsletter p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

.newsletter-form .form-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 15px 30px;
  background: #1ead1c;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #c0392b;
}

/* Contact Preview */
.contact-preview {
  background: #f8f9fa;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.contact-info h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 30px;
}

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

.contact-item img {
  width: 24px;
  height: 24px;
}

.contact-item span {
  font-size: 1.1rem;
  color: #555;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: #1ead1c;
  color: white;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.btn-primary:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #1ead1c;
  border: 2px solid #1ead1c;
}

.btn-secondary:hover {
  background: #1ead1c;
  color: white;
}

/* Footer */
footer {
  background: #2c3e50;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #ecf0f1;
}

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

.footer-logo img {
  width: 40px;
  height: 40px;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: bold;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #1ead1c;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
}

.social-links img {
  width: 30px;
  height: 30px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #34495e;
  color: #bdc3c7;
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: white;
  padding: 20px;
  z-index: 1000;
  display: none;
}

.cookie-notice.show {
  display: block;
}

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

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-buttons button:first-child {
  background: #1ead1c;
  color: white;
}

.cookie-buttons button:nth-child(2) {
  background: #34495e;
  color: white;
}

.cookie-buttons button:last-child {
  background: transparent;
  color: white;
  border: 1px solid white;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
}

.cookie-modal-content h3 {
  color: #2c3e50;
  margin-bottom: 20px;
}

.cookie-option {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.cookie-option label {
  color: #555;
  font-weight: 500;
}

/* About Page Styles */
.company-story {
  background: #f8f9fa;
}

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

.story-text h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 30px;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.mission-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

.mission-card:hover {
  transform: translateY(-5px);
}

.mission-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.mission-card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.mission-card p {
  color: #666;
  line-height: 1.6;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.principle-item {
  text-align: center;
  padding: 30px;
}

.principle-number {
  font-size: 3rem;
  font-weight: bold;
  color: #1ead1c;
  margin-bottom: 20px;
}

.principle-item h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.principle-item p {
  color: #666;
  line-height: 1.6;
}

.team {
  background: #f8f9fa;
}

.team-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

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

.value-card:hover {
  transform: translateY(-5px);
}

.value-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.value-card p {
  color: #666;
  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

/* Services Page Styles */
.services-overview {
  background: #f8f9fa;
}

.service-detailed-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-detailed-card:hover {
  transform: translateY(-5px);
}

.service-image {
  padding: 30px;
  text-align: center;
  background: #f8f9fa;
}

.service-image img {
  width: 80px;
  height: 80px;
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.service-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.stars {
  color: #f39c12;
  font-size: 1.1rem;
}

.rating-text {
  color: #666;
  font-size: 0.9rem;
}

.service-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  margin-bottom: 25px;
}

.service-features li {
  padding: 5px 0;
  color: #666;
  position: relative;
  padding-left: 20px;
}

.service-features li:before {
  content: "✓";
  color: #27ae60;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.service-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1ead1c;
}

.price-note {
  color: #666;
  font-size: 0.9rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.step {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: #1ead1c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.step p {
  color: #666;
  line-height: 1.6;
}

.pricing-info {
  background: #f8f9fa;
}

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

.pricing-text h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.pricing-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.pricing-factors {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-factors li {
  padding: 8px 0;
  color: #666;
  position: relative;
  padding-left: 25px;
}

.pricing-factors li:before {
  content: "•";
  color: #1ead1c;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.pricing-cta {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.pricing-cta h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.pricing-cta p {
  color: #666;
  margin-bottom: 25px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
}

/* Contact Page Styles */
.contact-info {
  background: #f8f9fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

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

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  margin-bottom: 20px;
}

.contact-icon img {
  width: 50px;
  height: 50px;
}

.contact-card h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.contact-card p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.contact-card a {
  color: #1ead1c;
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card span {
  color: #666;
  font-size: 0.9rem;
}

.contact-form-section {
  background: #f8f9fa;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.form-header p {
  color: #666;
  font-size: 1.1rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

.form-submit {
  text-align: center;
}

.quote-form-section {
  background: #f8f9fa;
}

.quote-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.quote-header {
  text-align: center;
  margin-bottom: 30px;
}

.quote-header h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.quote-header p {
  color: #666;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.business-hours {
  background: #f8f9fa;
}

.hours-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.hours-container h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 30px;
}

.hours-grid {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  border-bottom: 1px solid #e0e0e0;
}

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

.hours-item .day {
  font-weight: 500;
  color: #2c3e50;
}

.hours-item .time {
  color: #666;
}

.hours-note {
  background: #fff3cd;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #f39c12;
}

.hours-note p {
  color: #856404;
  margin: 0;
}

.contact-faq {
  background: #f8f9fa;
}

/* Thank You Page Styles */
.thank-you-section {
  padding: 120px 0;
  background: #f8f9fa;
  text-align: center;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-icon {
  margin-bottom: 30px;
}

.thank-you-icon img {
  width: 80px;
  height: 80px;
  opacity: 0.8;
}

.thank-you-content h1 {
  font-size: 3rem;
  color: #27ae60;
  margin-bottom: 30px;
}

.thank-you-message {
  margin-bottom: 50px;
}

.main-message {
  font-size: 1.5rem;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 15px;
}

.sub-message {
  font-size: 1.1rem;
  color: #666;
}

.thank-you-details {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}

.thank-you-details h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 30px;
}

.next-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.step {
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #1ead1c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 auto 15px;
}

.step-content h3 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.step-content p {
  color: #666;
  font-size: 0.9rem;
}

.thank-you-actions {
  margin-bottom: 50px;
}

.thank-you-actions h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 30px;
}

.action-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-info-thanks {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info-thanks h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.contact-info-thanks p {
  color: #666;
  margin-bottom: 30px;
}

.contact-methods {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-method img {
  width: 24px;
  height: 24px;
}

.contact-method a {
  color: #1ead1c;
  text-decoration: none;
  font-weight: 500;
}

.contact-method a:hover {
  text-decoration: underline;
}

/* Legal Pages */
.legal-content {
  background: #f8f9fa;
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.legal-text h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
  margin-top: 40px;
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 15px;
  margin-top: 30px;
}

.legal-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.legal-text ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.legal-text li {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.6;
}

.legal-text a {
  color: #1ead1c;
  text-decoration: none;
}

.legal-text a:hover {
  text-decoration: underline;
}

.cookie-settings-link {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
  text-align: center;
}

.cookie-settings-link h2 {
  margin-bottom: 20px;
}

.cookie-settings-link p {
  margin-bottom: 20px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 20px 0;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .info-grid,
  .benefits-grid,
  .services-grid,
  .achievements-grid,
  .testimonials-grid,
  .advantages-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .story-content {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .pricing-content {
    grid-template-columns: 1fr;
  }

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

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form .form-group {
    flex-direction: column;
  }

  .newsletter-form input {
    min-width: unset;
  }

  .form-container {
    padding: 30px;
  }

  .quote-container {
    padding: 30px;
  }

  .legal-text {
    padding: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-methods {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  section {
    padding: 60px 0;
  }

  .container {
    padding: 0 15px;
  }

  .nav-container {
    padding: 0 15px;
  }

  .form-container {
    padding: 20px;
  }

  .quote-container {
    padding: 20px;
  }

  .legal-text {
    padding: 20px;
  }
}

/* Smooth animations */
@media (prefers-reduced-motion: no-preference) {
  * {
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  }

  .info-card,
  .benefit-item,
  .service-card,
  .advantage-card,
  .contact-card,
  .mission-card,
  .value-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
}
