@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f8f9fa;
  color: #1a1a1a;
  line-height: 1.6;
  scroll-behavior: smooth;
}

h2, h3 {
  text-align: center;
}
a {
  color: #0074c1;
  text-decoration: none;
}

a:hover {
  color: #005f99;
  text-decoration: underline;
}
.btn:hover {
  background: #005f99;
  color: #fff; /* <-- гарантирует, что текст будет белым */
  transform: translateY(-2px);
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
}

/* Navigation */
nav {
  background: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.left-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.left-info .phone {
  font-weight: 600;
  color: #1a1a1a;
}

.left-info .socials a {
  font-size: 1.2rem;
  margin-right: 0.5rem;
  color: #0074c1;
}

.left-info .socials a:hover {
  color: #005f99;
}

.logo {
  font-weight: 700;
  font-size: 1.3rem;
  color: #0074c1;
  flex-grow: 1;
  text-align: center;
}

.logo a {
  text-decoration: none;
  color: inherit;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .left-info {
    display: none;
  }

  .logo {
    text-align: left;
  }

  nav ul {
    flex-direction: column;
    display: none;
    background: #fff;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    text-align: center;
    gap: 1rem;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  nav ul.show {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }
}

/* Header */
header {
  background: url('img/header-bg.jpg') center/cover no-repeat;
  position: relative;
  text-align: center;
  padding: 12rem 2rem 12rem;
  color: #fff;
}

header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

header h1,
header p,
header .btn {
  position: relative;
  z-index: 2;
}

header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.header-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
  justify-content: center;
}

/* Базовая кнопка */
/* Универсальный стиль для всех кнопок */
.btn {
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, transform 0.2s;
}

/* Общие настройки для кнопок в хедере */
.header-btn {
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s ease;
  display: inline-block;
}

/* Get a Free Quote */
.quote-btn {
  background-color: #0074C1; /* Основной насыщенный синий */
  color: #ffffff;
  border: 2px solid #0074C1;
  transition: all 0.2s ease;
}
.quote-btn:hover {
  background-color: #005fa3; /* Темнее при наведении */
  border-color: #005fa3;
  color: #ffffff;
}

/* Call Now */
.call-btn {
  background-color: #ffffff;
  color: #0074C1;
  border: 2px solid #0074C1;
  transition: all 0.2s ease;
}
.call-btn:hover {
  background-color: #e6f2fb; /* Очень светлый голубой фон */
  color: #005fa3;
  border-color: #005fa3;
}

.call-btn i {
  margin-right: 8px;
}

/* Адаптив — кнопки в колонку */
@media (max-width: 600px) {
  .header-buttons {
    flex-direction: column;
    align-items: center;
  }

  .header-btn {
    width: 100%;
    max-width: 300px;
  }
}





/* Moving Story Section */
.moving-story {
  background-color: #f1f5f9;
  margin-top: 2rem;
  padding: 80px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.story-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.story-image {
  flex: 1 1 40%;
  max-width: 400px;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.story-text {
  flex: 1 1 50%;
  max-width: 600px;
}

.story-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
  font-weight: 700;
}

.story-text p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #333;
}

.story-text ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.story-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
}

.story-text ul li::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.2;
}

.story-text .trust {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0074c1;
}

@media (max-width: 768px) {
  .story-flex {
    flex-direction: column;
    text-align: center;
  }

  .story-image {
    display: none;
  }

  .story-text {
    text-align: center;
  }
}

/* Contact */
#contact {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}


.services-section {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: #555;
}

.services-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-card {
  background: #f8f9fa;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  max-width: 350px;
  flex: 1 1 300px;
  text-align: left;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
  color: #1a1a1a;
}

.service-card p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
}

.service-link {
  font-weight: 600;
  color: #0074c1;
  text-decoration: none;
}

.service-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    max-width: 100%;
  }
}
/* === Steps Chain Section === */

.steps-chain {
  background-color: #f9f9f9;
  padding: 60px 0;
  text-align: center;
}

.steps-chain .section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.steps-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.step-block {
  flex: 1 1 calc(33.333% - 20px);
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}

.step-block:hover {
  transform: translateY(-5px);
}

.step-block img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #004A7F;
}

.step-content p {
  font-size: 1rem;
  color: #555;
}

@media (max-width: 900px) {
.step-block {
    flex: 1 1 100%;
  }
}
.steps-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.step-block {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 20px;
  text-align: center;
  max-width: 300px;
  flex: 1 1 250px;
}

.step-block img {
  max-width: 80px;
  margin-bottom: 15px;
}

.step-arrow {
  font-size: 2rem;
  color: #0d6efd;
  font-weight: bold;
  margin: 0 10px;
}

@media (max-width: 768px) {
  .steps-wrapper {
    flex-direction: column;
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }
}



/*===================================*/

.quote-section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.quote-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 5px;
}

.form-group input,
.form-group select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.quote-form .btn {
  padding: 14px;
  background-color: #005f99;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.quote-form .btn:hover {
  background-color: #004770;
}
.separated-bg {
  background-color: #eef1f5; /* светло-серый фон для отделения */
  padding: 80px 20px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.background-pattern {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='none' stroke='%23dcdcdc' stroke-width='0.5'%3E%3Cg opacity='0.3'%3E%3Crect x='10' y='10' width='12' height='12' rx='2'/%3E%3Cpolygon points='55,20 60,10 65,20' /%3E%3Crect x='70' y='70' width='20' height='10' /%3E%3Ccircle cx='75' cy='82' r='2' /%3E%3Ccircle cx='85' cy='82' r='2' /%3E%3C/g%3E%3C/svg%3E");
  background-size: 120px 120px;
  background-repeat: repeat;
}
.header-btn {
  background: #0074c1;
  color: #fff;
}

.header-btn:hover {
  background: #005f99;
  color: #fff;
}

/* Модалка */
/* === Modal Styles === */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 24px;
  color: #aaa;
  cursor: pointer;
  transition: color 0.3s;
}

.close-btn:hover {
  color: #000;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.areas-section {
  position: relative;
}

.areas-section::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: linear-gradient(to top, #f1f5f9 0%, transparent 100%);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  margin-top: 30px;
  text-align: center;
}

.areas-grid span {
  background-color: white;
  border: 1px solid #e0e0e0;
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: 0.2s;
}

.areas-grid span:hover {
  background-color: #e6f2fa;
  color: #0074c1;
}



.testimonials-section {
  background-color: #f9fbfc;
  padding: 60px 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.testimonial-card {
  background-color: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e4e4e4;
  transition: transform 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
}

.testimonial-author {
  font-weight: 600;
  color: #0074c1;
  text-align: right;
}


.quote-cta-section {
  background-color: #D7E0E0;
  padding: 60px 20px;
  text-align: center;
}

.quote-cta-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #111;
}
 /* Footer */
/* Основной футер */
.main-footer {
  background-color: #1a1a1a;
  color: #f8f9fa;
  padding: 40px 15px 20px;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-column h4,
.footer-column h5 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.footer-column p,
.footer-column a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  color: #999;
  font-size: 0.85rem;
}

/* Адаптация под мобильные */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 10px; /* уменьшили промежутки */
  }

  .footer-column {
    width: 100%;
    margin-bottom: 15px; /* уменьшили нижний отступ */
  }

  .footer-column:last-child {
    margin-bottom: 0;
  }

  .main-footer {
    padding: 30px 15px 15px;
  }

  .footer-bottom {
    margin-top: 20px;
    font-size: 0.8rem;
  }
}

 /* Footer - end */

.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  margin-right: 12px;
  font-size: 1.2rem;
  color: #cccccc;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.85rem;
  color: #aaa;
}

/*  Additional Moving Services in Toronto  */
.additional-services.light-bg {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.services-grid.alt {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.icon-circle {
  background-color: #e9f2fb;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 28px;
  height: 28px;
}


.additional-services {
  padding: 80px 20px;
  background-color: #fdfdfd;
}

.additional-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.additional-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: #555;
  margin: 0 auto 50px;
  max-width: 700px;
}

.additional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.additional-box {
  background-color: #f5f6f7;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  transition: transform 0.3s;
}

.additional-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.07);
}

.additional-box h4 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.additional-box p {
  font-size: 0.96rem;
  color: #444;
}


/*  breadcrumbs   */

.breadcrumb {
  font-size: 0.95rem;
  margin: 30px 0;
  background-color: #f9f9f9; /* фон, как у основного контента */
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  position: relative; /* гарантирует, что не будет "липким" */
  z-index: 1; /* ниже фиксированного меню */
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb ol li {
  display: flex;
  align-items: center;
  color: #6c757d;
}

.breadcrumb ol li a {
  color: #0d6efd;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb ol li a:hover {
  text-decoration: underline;
}

.breadcrumb ol li + li::before {
  content: "›";
  font-size: 0.85rem;
  color: #adb5bd;
  margin: 0 10px;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}
/* FAQ */
.accordion-header {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 18px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.accordion-header:hover {
  background-color: #f5f5f5;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #fafafa;
  padding: 0 18px;
}

.accordion-content p {
  margin: 15px 0;
  color: #555;
}

/*    Additional Services Provided     */
.additional-services {
  background-color: #FCFCFC;
  padding: 60px 20px;
  text-align: center;
}

.additional-services h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1e1e1e;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-item {
  background-color: #ffffff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #0074C1;
}

.service-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* информационный блок с текстом  */

.seo-text-block {
  background-color: #f1f3f5;
  padding: 60px 20px;
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
}

.seo-text-block h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #1e1e1e;
  text-align: center;
}

.seo-text-block p {
  max-width: 900px;
  margin: 0 auto 20px auto;
  text-align: justify;
}
 
 /*pricing */
 
 .pricing-section {
  padding: 60px 0;
}

.pricing-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 40px;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 1.75rem;
  font-weight: bold;
  color: #0071c1;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.pricing-card ul li {
  margin-bottom: 10px;
  color: #555;
}

.pricing-card .btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
}

.pricing-card.popular {
  border: 2px solid #0071c1;
}

.pricing-card .badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #0071c1;
  color: #fff;
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 30px;
}
/*image*/
.article-image {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
 .checklist {
    padding-left: 1.5rem;
    list-style-type: none;
  }
.checklist li::before {
    content: \"✔\";
    color: #1e88e5;
    margin-right: 8px;
  }
.content-section {
    padding: 60px 20px;
    background: #fff;
  }

  .article-content {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.7;
    color: #333;
    font-size: 1rem;
  }

  .article-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #111;
  }

  .article-content h4 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #0d6efd;
  }

  .article-content p {
    margin-bottom: 1.2rem;
  }

  .article-image {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  .article-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .checklist {
    list-style: none;
    padding-left: 1.2rem;
  }

  .checklist li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
  }

  .checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #198754;
    font-weight: bold;
  }

  .article-content a {
    color: #0d6efd;
    text-decoration: underline;
  }
  
/* Blog */  
.blog-article {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  color: #333;
}

.blog-header {
  text-align: left;
  margin-bottom: 30px;
}

.blog-featured-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.blog-title {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.blog-meta {
  font-size: 0.9rem;
  color: #888;
}

.blog-content h2 {
  margin-top: 20px;
  font-size: 1.25rem;
  color: #222;
}

.blog-content h2 {
  text-align: left; /* принудительно выравнивает подзаголовки в тексте по левому краю */
}
.blog-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.blog-content li {
  margin-bottom: 20px;
  text-align: left;
}

.blog-cta {
  background-color: #fff;
  border-left: 2px solid #878787;
  padding: 20px;
  margin-top: 40px;
  text-align: center;
}

.blog-cta h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.btn-primary {
  display: inline-block;
  margin-top: 10px;
  background-color: #0d6efd;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #084298;
}
.project-gallery {
  padding: 60px 20px;
  background: #f9f9f9;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.gallery-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.item-info {
  padding: 20px;
}

.item-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.item-info p {
  color: #555;
  font-size: 0.95rem;
}
.article-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  padding: 20px 0;
}

.article-text h3 {
  font-size: 1.4rem;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  color: #222;
}

.article-text p {
  margin-bottom: 1.2em;
}

.article-text a {
  color: #0d6efd;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.article-text a:hover {
  color: #063b9b;
}
