:root {
  --primary-color: #1a4d8f;
  --secondary-color: #2c7be5;
  --accent-color: #e67e22;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #dee2e6;
  --success-color: #28a745;
  --hover-color: #155a9f;
}

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

html {
  font-size: 16px;
}

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: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 0;
}

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

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

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

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-white);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--bg-white);
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}

.nav-link {
  color: var(--bg-white);
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
  background-color: rgba(255,255,255,0.15);
}

.font-btn {
  background-color: var(--accent-color);
  color: var(--bg-white);
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background-color 0.3s ease;
}

.font-btn:hover {
  background-color: #d35400;
}

.welcome-banner {
  background-color: var(--bg-light);
  padding: 1.5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.container-welcome {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.welcome-text {
  font-size: 1.1rem;
  color: var(--text-light);
  font-style: italic;
}

.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(26,77,143,0.95) 0%, rgba(44,123,229,0.9) 100%),
              url('images/1.jpg') center/cover no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  text-align: center;
  padding: 4rem 2rem;
}

.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;
}

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

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

.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--bg-white);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
  background-color: #d35400;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.container-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.features-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

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

.feature-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-color: var(--secondary-color);
}

.feature-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.services-preview {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.services-showcase {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-item:nth-child(even) {
  direction: rtl;
}

.service-item:nth-child(even) .service-content {
  direction: ltr;
}

.service-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.service-content h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 10px;
  color: var(--hover-color);
}

.process-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.process-step h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--text-light);
  line-height: 1.6;
}

.testimonials-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

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

.testimonial-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.testimonial-author strong {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--bg-white);
  text-align: center;
}

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

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-button-secondary {
  display: inline-block;
  background-color: var(--bg-white);
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cta-button-secondary:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
}

.main-footer {
  background-color: #1a2332;
  color: var(--bg-white);
  padding: 3rem 0 1rem;
}

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

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

.footer-column h4 {
  color: var(--bg-white);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-column p {
  color: #b0b9c5;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.footer-reg {
  font-size: 0.9rem;
  margin-top: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: #b0b9c5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--bg-white);
}

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

.footer-contact li {
  color: #b0b9c5;
  margin-bottom: 0.8rem;
  display: flex;
  gap: 10px;
  line-height: 1.5;
}

.footer-contact i {
  color: var(--secondary-color);
  margin-top: 3px;
}

.footer-contact a {
  color: #b0b9c5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--bg-white);
}

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

.footer-bottom p {
  color: #b0b9c5;
  font-size: 0.95rem;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(26, 35, 50, 0.98);
  color: var(--bg-white);
  padding: 1.5rem 2rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  z-index: 9999;
  display: none;
}

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

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

.cookie-text h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.cookie-text p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
  line-height: 1.5;
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

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

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

.cookie-btn.accept-all:hover {
  background-color: #218838;
}

.cookie-btn.reject {
  background-color: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
}

.cookie-btn.reject:hover {
  background-color: rgba(255,255,255,0.1);
}

.cookie-btn.customize {
  background-color: var(--secondary-color);
  color: var(--bg-white);
}

.cookie-btn.customize:hover {
  background-color: var(--hover-color);
}

.page-header-blog {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 4rem 0;
  text-align: center;
  color: var(--bg-white);
}

.page-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.blog-posts-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
}

.blog-post-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.post-image-wrapper {
  position: relative;
  overflow: hidden;
}

.post-thumbnail {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-post-card:hover .post-thumbnail {
  transform: scale(1.05);
}

.post-category {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--bg-white);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.post-content {
  padding: 1.5rem;
}

.post-title {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

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

.post-excerpt {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.read-more-btn:hover {
  gap: 10px;
  color: var(--hover-color);
}

.blog-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 4rem 0;
  text-align: center;
  color: var(--bg-white);
}

.blog-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.blog-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.services-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 4rem 0;
  text-align: center;
  color: var(--bg-white);
}

.services-main-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.services-intro {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
  line-height: 1.7;
}

.detailed-services {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.service-detail.reverse .service-detail-content {
  direction: ltr;
}

.service-badge {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--bg-white);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.service-description {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.service-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.service-benefits i {
  color: var(--success-color);
  margin-top: 3px;
}

.service-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background-color: var(--bg-light);
  border-radius: 8px;
}

.price-label {
  font-size: 0.95rem;
  color: var(--text-light);
}

.price-amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-period {
  font-size: 0.95rem;
  color: var(--text-light);
}

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

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

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.services-faq {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

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

.faq-item {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--secondary-color);
}

.faq-question {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-question i {
  color: var(--secondary-color);
}

.faq-answer {
  color: var(--text-dark);
  line-height: 1.7;
}

.services-final-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 5rem 0;
  text-align: center;
  color: var(--bg-white);
}

.services-final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.services-final-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

.cta-button-large:hover {
  background-color: #d35400;
  transform: translateY(-2px);
}

.about-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 4rem 0;
  text-align: center;
  color: var(--bg-white);
}

.about-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
}

.company-story {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.story-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.story-text h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.story-text p {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-box {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.95;
}

.mission-vision {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.mission-box,
.vision-box {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.mv-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.mission-box h3,
.vision-box h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.mission-box p,
.vision-box p {
  color: var(--text-dark);
  line-height: 1.7;
}

.team-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.team-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 3rem;
}

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

.team-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

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

.team-photo {
  width: 100%;
  max-width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 5px solid var(--secondary-color);
}

.team-card h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.team-position {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.team-bio {
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 0.95rem;
}

.values-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

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

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

.value-item i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.value-item h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.value-item p {
  color: var(--text-dark);
  line-height: 1.6;
}

.about-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 5rem 0;
  text-align: center;
  color: var(--bg-white);
}

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

.about-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.contact-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 4rem 0;
  text-align: center;
  color: var(--bg-white);
}

.contact-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
}

.contact-main {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-info-section h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-description {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.info-content p {
  color: var(--text-dark);
  line-height: 1.6;
}

.info-content a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: var(--hover-color);
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem;
  border: 2px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

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

.checkbox-group {
  flex-direction: row;
  align-items: center;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--secondary-color);
}

.submit-btn {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--hover-color);
  transform: translateY(-2px);
}

.map-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.map-container {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}

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

.modal-content {
  background-color: var(--bg-white);
  padding: 3rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--text-dark);
}

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

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

.modal-content p {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.modal-btn {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.modal-btn:hover {
  background-color: var(--hover-color);
}

.post-single {
  padding: 3rem 0;
  background-color: var(--bg-light);
}

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

.post-header-single {
  margin-bottom: 2rem;
}

.breadcrumb {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb a {
  color: var(--secondary-color);
  text-decoration: none;
}

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

.post-header-single h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.post-meta-single {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--text-light);
}

.post-category-tag {
  background-color: var(--accent-color);
  color: var(--bg-white);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.85rem;
}

.post-featured-image {
  margin-bottom: 3rem;
  border-radius: 12px;
  overflow: hidden;
}

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

.post-content-single {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.lead-paragraph {
  font-size: 1.2rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 500;
}

.post-content-single h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.post-content-single h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-content-single p {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.post-content-single ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.post-content-single li {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

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

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.tag-label {
  font-weight: 600;
  color: var(--text-dark);
}

.tag {
  background-color: var(--bg-light);
  color: var(--secondary-color);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.tag:hover {
  background-color: var(--secondary-color);
  color: var(--bg-white);
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.back-to-blog,
.consult-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-to-blog {
  background-color: var(--bg-light);
  color: var(--text-dark);
  border: 2px solid var(--border-color);
}

.back-to-blog:hover {
  background-color: var(--border-color);
}

.consult-cta {
  background-color: var(--secondary-color);
  color: var(--bg-white);
}

.consult-cta:hover {
  background-color: var(--hover-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--primary-color);
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    box-shadow: 0 10px 27px rgba(0,0,0,0.2);
    padding: 2rem 0;
  }

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

  .menu-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .service-item:nth-child(even) {
    direction: ltr;
  }

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

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

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

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

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail.reverse {
    direction: ltr;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2.2rem;
  }

  .features-grid,
  .blog-posts-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

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

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

  .stat-box {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

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

  .post-featured-image img {
    height: 300px;
  }

  .post-content-single {
    padding: 2rem 1.5rem;
  }

  .post-content-single h2 {
    font-size: 1.6rem;
  }

  .post-navigation {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .nav-container {
    padding: 1rem;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .hero-section {
    padding: 3rem 1rem;
  }

  .container-main,
  .container-welcome {
    padding: 0 1rem;
  }

  .cta-button,
  .cta-button-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .service-detail,
  .contact-wrapper {
    padding: 2rem 1.5rem;
  }

  .cookie-consent {
    padding: 1rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

body.font-large {
  font-size: 18px;
}

body.font-large h1 {
  font-size: 3.2rem;
}

body.font-large h2 {
  font-size: 2.6rem;
}

body.font-large h3 {
  font-size: 2rem;
}

body.font-large p,
body.font-large li {
  font-size: 1.1rem;
}