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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #2c3e50;
  background-color: #f8f9fa;
}

.main-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

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

.logo-section img {
  display: block;
  height: 60px;
  width: auto;
}

.primary-nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.primary-nav a {
  color: #ecf0f1;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.primary-nav a:hover,
.primary-nav a.nav-active {
  color: #3498db;
  border-bottom-color: #3498db;
}

.hero-banner {
  background: linear-gradient(rgba(22, 33, 62, 0.85), rgba(22, 33, 62, 0.85)), url('images/1.jpg') center/cover;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
}

.hero-overlay {
  width: 100%;
  padding: 3rem 2rem;
}

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

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-cta {
  padding: 1rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
}

.btn-primary {
  background: #3498db;
  color: white;
}

.btn-primary:hover {
  background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background: white;
  color: #16213e;
  transform: translateY(-2px);
}

.content-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
}

.section-heading {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3.5rem;
  color: #1a1a2e;
  font-weight: 700;
  position: relative;
}

.section-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #3498db;
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

.services-grid,
.equipment-grid,
.benefits-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service-card,
.equipment-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover,
.equipment-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.service-card h3,
.equipment-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: #2c3e50;
}

.service-card p,
.equipment-card p {
  color: #5a6c7d;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.link-arrow {
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.link-arrow:hover {
  color: #2980b9;
  padding-left: 5px;
}

.equipment-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

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

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

.equipment-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.equipment-item h4 {
  padding: 1.5rem 1.5rem 0.8rem;
  font-size: 1.4rem;
  color: #2c3e50;
}

.equipment-item p {
  padding: 0 1.5rem 1.5rem;
  color: #5a6c7d;
  line-height: 1.7;
}

.featured-services,
.featured-equipment,
.why-choose,
.testimonials-section {
  background: white;
  margin: 3rem 0;
}

.why-choose {
  background: #f8f9fa;
}

.benefit-block {
  display: flex;
  gap: 1.5rem;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}

.benefit-marker {
  font-size: 2rem;
  color: #27ae60;
  font-weight: bold;
  flex-shrink: 0;
}

.benefit-text h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #2c3e50;
}

.benefit-text p {
  color: #5a6c7d;
  line-height: 1.8;
}

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

.testimonial-card {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 10px;
  border-left: 4px solid #3498db;
}

.testimonial-text {
  font-style: italic;
  color: #34495e;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.testimonial-author {
  font-weight: 600;
  color: #2c3e50;
  text-align: right;
}

.cta-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 5rem 2rem;
  text-align: center;
  color: white;
  margin: 4rem 0;
}

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

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

.btn-cta {
  background: #3498db;
  color: white;
  padding: 1.2rem 3rem;
  font-size: 1.15rem;
}

.btn-cta:hover {
  background: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.site-footer {
  background: #1a1a2e;
  color: #ecf0f1;
  padding: 4rem 2.5rem 2rem;
}

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

.footer-column h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #3498db;
}

.footer-column p {
  line-height: 1.8;
  color: #bdc3c7;
}

.company-reg {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #95a5a6;
}

.footer-links,
.contact-info {
  list-style: none;
}

.footer-links li,
.contact-info li {
  margin-bottom: 0.8rem;
}

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

.footer-links a:hover {
  color: #3498db;
  padding-left: 5px;
}

.contact-info li {
  color: #bdc3c7;
  line-height: 1.8;
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #34495e;
  text-align: center;
  color: #95a5a6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-number {
  color: #7f8c8d;
  font-size: 0.9rem;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: white;
  padding: 2rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  z-index: 9999;
  display: none;
}

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

.cookie-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #3498db;
}

.cookie-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: #ecf0f1;
}

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

.cookie-btn {
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.accept-all {
  background: #27ae60;
  color: white;
}

.accept-all:hover {
  background: #229954;
}

.accept-necessary {
  background: #3498db;
  color: white;
}

.accept-necessary:hover {
  background: #2980b9;
}

.decline {
  background: #95a5a6;
  color: white;
}

.decline:hover {
  background: #7f8c8d;
}

.cookie-close {
  position: absolute;
  top: -10px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cookie-close:hover {
  color: #e74c3c;
}

.page-hero {
  background: linear-gradient(rgba(22, 33, 62, 0.9), rgba(22, 33, 62, 0.9)), url('images/2.jpg') center/cover;
  padding: 6rem 2rem;
  text-align: center;
  color: white;
  margin-bottom: 3rem;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.page-hero p {
  font-size: 1.3rem;
  opacity: 0.95;
}

.category-section {
  margin-bottom: 5rem;
}

.category-title {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #3498db;
}

.equipment-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.equipment-features {
  list-style: none;
  text-align: left;
  margin: 1.5rem 0;
}

.equipment-features li {
  padding: 0.6rem 0;
  padding-left: 1.8rem;
  position: relative;
  color: #5a6c7d;
}

.equipment-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #3498db;
  font-weight: bold;
}

.equipment-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #27ae60;
  margin: 1.5rem 0;
}

.btn-enquire {
  background: #3498db;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.rental-info {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 12px;
  margin-top: 4rem;
}

.rental-info h2 {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 2.5rem;
  text-align: center;
}

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

.info-item h3 {
  font-size: 1.5rem;
  color: #34495e;
  margin-bottom: 1.2rem;
}

.custom-list {
  list-style: none;
}

.custom-list li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  color: #5a6c7d;
}

.custom-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
  font-size: 1.2rem;
}

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

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

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

.service-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.service-description h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.service-description h3 {
  font-size: 1.4rem;
  color: #34495e;
  margin: 2rem 0 1rem;
}

.service-description p {
  line-height: 1.8;
  color: #5a6c7d;
  margin-bottom: 1.2rem;
}

.service-pricing {
  font-size: 1.2rem;
  color: #27ae60;
  margin-top: 1.5rem;
}

.production-process {
  background: #f8f9fa;
  padding: 5rem 2rem;
}

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

.process-step {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.process-step h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.process-step p {
  color: #5a6c7d;
  line-height: 1.7;
}

.service-packages {
  padding: 5rem 2rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.package-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

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

.package-card.featured {
  border: 3px solid #3498db;
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #e74c3c;
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.package-card h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.package-price {
  font-size: 2.5rem;
  color: #3498db;
  font-weight: 700;
  margin-bottom: 2rem;
}

.package-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.package-features li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  color: #5a6c7d;
  border-bottom: 1px solid #ecf0f1;
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
  font-size: 1.2rem;
}

.btn-package {
  background: #3498db;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.blog-listing {
  padding: 3rem 0;
}

.blog-posts {
  max-width: 1100px;
  margin: 0 auto;
}

.blog-post-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 0;
  transition: all 0.3s ease;
}

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

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

.post-content {
  padding: 2.5rem;
}

.post-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.post-content h2 a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-content h2 a:hover {
  color: #3498db;
}

.post-meta {
  color: #7f8c8d;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.post-excerpt {
  color: #5a6c7d;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.read-more {
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #2980b9;
  padding-left: 5px;
}

.company-story {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #5a6c7d;
  margin-bottom: 1.8rem;
}

.team-section {
  background: #f8f9fa;
  padding: 5rem 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

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

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

.team-member img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.team-member h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.5rem;
  color: #2c3e50;
}

.member-role {
  padding: 0 1.5rem;
  color: #3498db;
  font-weight: 600;
  font-size: 1.05rem;
}

.member-bio {
  padding: 1rem 1.5rem 1.5rem;
  color: #5a6c7d;
  line-height: 1.7;
}

.values-section {
  padding: 5rem 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.value-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-top: 4px solid #3498db;
}

.value-card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.value-card p {
  color: #5a6c7d;
  line-height: 1.8;
}

.achievements-section {
  background: #f8f9fa;
  padding: 5rem 2rem;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.stat-number {
  font-size: 3rem;
  color: #3498db;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: #5a6c7d;
  font-size: 1.1rem;
}

.contact-section {
  padding: 3rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: 1300px;
  margin: 0 auto;
}

.contact-info-panel {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 12px;
}

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

.contact-info-panel p {
  color: #5a6c7d;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-methods {
  margin-top: 2.5rem;
}

.contact-method {
  margin-bottom: 2.5rem;
}

.contact-method h3 {
  font-size: 1.3rem;
  color: #34495e;
  margin-bottom: 0.8rem;
}

.contact-method p {
  color: #5a6c7d;
  margin-bottom: 0.5rem;
}

.contact-method a {
  color: #3498db;
  text-decoration: none;
}

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

.hours {
  font-size: 0.95rem;
  color: #7f8c8d;
  line-height: 1.6;
}

.business-hours {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.business-hours h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  padding: 0.6rem 0;
  color: #5a6c7d;
  border-bottom: 1px solid #ecf0f1;
  display: flex;
  justify-content: space-between;
}

.hours-list li span {
  font-weight: 600;
  color: #34495e;
}

.contact-form-panel {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-form-panel h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 2rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-group label {
  font-weight: 600;
  color: #34495e;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.9rem;
  border: 2px solid #ecf0f1;
  border-radius: 6px;
  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: #3498db;
}

.btn-submit {
  background: #3498db;
  color: white;
  padding: 1.1rem 3rem;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.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-content {
  background-color: white;
  margin: 15% auto;
  padding: 3rem;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  color: #95a5a6;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #e74c3c;
}

.modal-content h2 {
  color: #27ae60;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.modal-content p {
  color: #5a6c7d;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.btn-modal {
  background: #3498db;
  color: white;
  padding: 0.9rem 2.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-modal:hover {
  background: #2980b9;
}

.blog-post {
  background: white;
}

.post-header {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 5rem 2rem 3rem;
  text-align: center;
}

.post-header-content h1 {
  font-size: 2.8rem;
  max-width: 900px;
  margin: 0 auto 1rem;
  line-height: 1.3;
}

.post-header-content .post-meta {
  color: #bdc3c7;
  font-size: 1.05rem;
}

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

.post-featured-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 3rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.post-body {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #34495e;
}

.post-body h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin: 3rem 0 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #ecf0f1;
}

.post-body h3 {
  font-size: 1.5rem;
  color: #34495e;
  margin: 2.5rem 0 1.2rem;
}

.post-body p {
  margin-bottom: 1.5rem;
}

.post-body ul,
.post-body ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.post-body li {
  margin-bottom: 0.8rem;
}

.post-navigation {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  border-top: 2px solid #ecf0f1;
}

.back-to-blog {
  color: #3498db;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.back-to-blog:hover {
  color: #2980b9;
  padding-left: 5px;
}

@media (max-width: 968px) {
  .header-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .primary-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .service-block,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  
  .service-block.reverse {
    direction: ltr;
  }
  
  .blog-post-card {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-heading {
    font-size: 2rem;
  }
  
  .cookie-content h3 {
    font-size: 1.2rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .post-header-content h1 {
    font-size: 2rem;
  }
}
