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

:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --text-dark: #333;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --success-color: #27ae60;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

.main-header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  border-radius: 50%;
  object-fit: cover;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color);
}

.hero-section {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--accent-color);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: var(--shadow);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.page-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-align: center;
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-heading {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.features-section {
  background-color: var(--bg-light);
}

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

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.feature-text {
  color: var(--text-light);
  line-height: 1.8;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.service-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-name {
  font-size: 1.5rem;
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--primary-color);
}

.service-description {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
}

.services-cta {
  text-align: center;
}

.secondary-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--secondary-color);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}

.secondary-button:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
}

.history-section {
  background-color: var(--bg-light);
}

.history-box {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}

.history-date {
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.history-text {
  color: var(--text-dark);
  line-height: 1.8;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--secondary-color);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-dark);
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--secondary-color);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-align: center;
}

.cta-heading {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button-large {
  display: inline-block;
  padding: 1.2rem 3rem;
  background-color: var(--accent-color);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: var(--shadow);
}

.cta-button-large:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.blog-grid,
.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card,
.post-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.blog-card:hover,
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.blog-image,
.post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-title,
.post-title {
  font-size: 1.3rem;
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--primary-color);
}

.post-link {
  text-decoration: none;
  color: var(--primary-color);
}

.post-link:hover {
  color: var(--secondary-color);
}

.blog-excerpt,
.post-excerpt {
  padding: 0 1.5rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.read-more,
.read-more-btn {
  display: inline-block;
  margin: 0 1.5rem 1.5rem;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
}

.read-more:hover,
.read-more-btn:hover {
  color: var(--primary-color);
}

.blog-cta {
  text-align: center;
  margin-top: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.team-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-name {
  font-size: 1.3rem;
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--primary-color);
}

.team-role {
  padding: 0 1.5rem 0.5rem;
  color: var(--secondary-color);
  font-weight: 600;
}

.team-bio {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

.values-section {
  background-color: var(--bg-light);
}

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

.value-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.value-description {
  color: var(--text-light);
  line-height: 1.8;
}

.approach-content {
  display: grid;
  gap: 2rem;
}

.approach-step {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.step-description {
  color: var(--text-light);
  line-height: 1.8;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse > * {
  direction: ltr;
}

.service-detail-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.service-detail-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-detail-text {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-dark);
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: 700;
}

.service-cta {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--secondary-color);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}

.service-cta:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
}

.pricing-section {
  background-color: var(--bg-light);
}

.pricing-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--text-light);
  line-height: 1.8;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
  border: 3px solid var(--secondary-color);
}

.featured-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--secondary-color);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-align: center;
}

.pricing-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 0.5rem;
}

.pricing-duration {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-dark);
}

.pricing-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: 700;
}

.pricing-button {
  display: block;
  width: 100%;
  padding: 0.8rem;
  background-color: var(--secondary-color);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s;
}

.pricing-button:hover {
  background-color: #2980b9;
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item:not(:last-child):after {
  content: "";
  position: absolute;
  left: 25px;
  top: 60px;
  bottom: -30px;
  width: 2px;
  background: var(--border-color);
}

.timeline-marker {
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.timeline-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.timeline-text {
  color: var(--text-light);
  line-height: 1.8;
}

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

.faq-item {
  background: white;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.faq-question {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.faq-answer {
  color: var(--text-light);
  line-height: 1.8;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.info-icon {
  font-size: 1.5rem;
}

.info-title {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--primary-color);
}

.info-text {
  color: var(--text-light);
  line-height: 1.8;
}

.info-link {
  color: var(--secondary-color);
  text-decoration: none;
}

.info-link:hover {
  text-decoration: underline;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.form-submit-btn {
  width: 100%;
  padding: 1rem;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.form-submit-btn:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
}

.map-container iframe {
  width: 100%;
  border-radius: 10px;
}

.post-article {
  background: white;
}

.post-header-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

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

.post-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.article-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.article-content {
  line-height: 1.9;
  color: var(--text-dark);
}

.article-content h2 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: var(--primary-color);
}

.article-content h3 {
  font-size: 1.4rem;
  margin: 1.5rem 0 1rem;
  color: var(--primary-color);
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.article-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.tag {
  padding: 0.3rem 1rem;
  background-color: var(--bg-light);
  color: var(--text-dark);
  border-radius: 20px;
  font-size: 0.9rem;
}

.article-share {
  text-align: center;
}

.share-text {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.share-btn {
  padding: 0.5rem 1.5rem;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
}

.related-posts {
  background-color: var(--bg-light);
  padding: 4rem 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.related-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.related-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.related-title {
  padding: 1rem;
}

.related-title a {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.related-title a:hover {
  color: var(--secondary-color);
}

.blog-listing {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.post-image-wrapper {
  height: 250px;
  overflow: hidden;
}

.post-content {
  padding: 1.5rem;
}

.post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-widget {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.widget-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.category-list,
.recent-posts-list {
  list-style: none;
}

.category-link,
.recent-post-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.category-link:hover,
.recent-post-link:hover {
  color: var(--secondary-color);
}

.cta-widget {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.widget-text {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.widget-button {
  display: block;
  width: 100%;
  padding: 0.8rem;
  background-color: var(--accent-color);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s;
}

.widget-button:hover {
  transform: translateY(-2px);
}

.newsletter-section {
  background-color: var(--bg-light);
  padding: 4rem 2rem;
}

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

.newsletter-heading {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.newsletter-text {
  margin-bottom: 2rem;
  color: var(--text-light);
}

.newsletter-form {
  display: flex;
  gap: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 1rem;
}

.newsletter-button {
  padding: 0.8rem 2rem;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-button:hover {
  background-color: #2980b9;
}

.site-footer {
  background-color: var(--primary-color);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-text {
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
}

.footer-link {
  display: block;
  padding: 0.3rem 0;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding: 1rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright-text {
  color: rgba(255,255,255,0.8);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  padding: 1.5rem;
  z-index: 1000;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.cookie-text {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.accept-btn {
  background-color: var(--success-color);
  color: white;
}

.decline-btn {
  background-color: var(--text-light);
  color: white;
}

.cookie-link {
  color: var(--secondary-color);
  text-decoration: none;
}

.cookie-link:hover {
  text-decoration: underline;
}

.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

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

.modal-content {
  background: white;
  padding: 3rem;
  border-radius: 10px;
  text-align: center;
  max-width: 500px;
}

.modal-icon {
  font-size: 4rem;
  color: var(--success-color);
  margin-bottom: 1rem;
}

.modal-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.modal-text {
  margin-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.8;
}

.modal-close-btn {
  padding: 0.8rem 2rem;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
}

.intro-text {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-heading {
    font-size: 2rem;
  }
  
  .service-block {
    grid-template-columns: 1fr;
  }
  
  .service-block.reverse {
    direction: ltr;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
  }
  
  .blog-listing {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .cookie-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}