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

.page {
  padding: 1rem;
}

h1 {
  font-size: 3rem !important;
  font-weight: 700;
}

h2 {
  font-size: 2rem !important;
}

h3 {
  font-size: 1.75rem !important;
}

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

  h2 {
    font-size: 1.4rem;
  }
}

#page-1 {
  background: url("../images/media-services/pic-bg.jpg") no-repeat center fixed;
  background-size: cover;
  filter: grayscale(100%);
}

#page-1 .wrapper {
  text-align: center;
  color: var(--second-color);
  padding: min(500px, 15%) min(300px, 12%);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

#page-1 p {
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  #page-1 h1 {
    font-size: 2rem !important;
  }

  #page-1 h2 {
    margin-top: 0.75rem;
    font-size: 1.5rem !important;
  }

  #page-1 p {
    margin-top: 0.75rem;
    font-size: 1rem !important;
  }
}

#services-overview {
  background: linear-gradient(
    135deg,
    var(--second-color) 0%,
    rgba(0, 0, 0, 0.05) 100%
  );
  padding: 5rem 0;
}

#services-overview .container {
  text-align: center;
}

#services-overview h2 {
  font-size: 2.8rem !important;
  margin-bottom: 1.5rem;
}

#services-overview .intro-text {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--greeting);
}

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

.service-card {
  background: var(--first-color);
  color: var(--second-color);
  padding: 3rem 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-card.primary::before {
  background: linear-gradient(
    135deg,
    var(--third-color) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
}

.service-card.secondary::before {
  background: linear-gradient(
    135deg,
    var(--greeting) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
}

.service-card.accent::before {
  background: linear-gradient(
    135deg,
    var(--first-color) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: var(--first-color);
}

.service-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--first-color);
  position: relative;
  z-index: 1;
}

.service-card.secondary .service-icon {
  color: var(--greeting);
}

.service-card.accent .service-icon {
  color: var(--third-color);
}

.service-card h3 {
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.service-card p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  color: var(--third-color);
}

.service-link {
  color: var(--third-color);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.service-link:hover {
  padding-left: 0.5rem;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }
}

#production-support {
  background-color: var(--second-color);
  color: var(--first-color);
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header.dark {
  color: var(--second-color);
}

.section-header h2 {
  font-size: 2.8rem !important;
  margin-bottom: 1.5rem;
}

.section-intro {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--greeting);
}

.section-header.dark .section-intro {
  color: var(--third-color);
}

.features-showcase {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}

.feature-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.feature-block:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: translateX(10px);
}

.feature-block.reverse {
  grid-template-columns: 1fr 200px;
  direction: rtl;
}

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

.feature-block.reverse:hover {
  transform: translateX(-10px);
}

.feature-visual {
  font-size: 5rem;
  color: var(--first-color);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-content h3 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.feature-content p {
  line-height: 1.8;
  color: var(--greeting);
}

@media (max-width: 968px) {
  .feature-block,
  .feature-block.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .feature-block.reverse {
    direction: ltr;
  }

  .feature-visual {
    font-size: 4rem;
  }
}

#personal-brand {
  background-color: var(--first-color);
  color: var(--second-color);
  padding: 5rem 0;
}

.brand-process {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3rem;
  position: relative;
}

.brand-process::before {
  content: "";
  position: absolute;
  left: 60px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--third-color);
  opacity: 0.3;
}

.process-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  align-items: start;
  position: relative;
}

.step-number {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--second-color);
  color: var(--first-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.step-content {
  padding-top: 1.5rem;
}

.step-content h3 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.step-content p {
  line-height: 1.8;
  color: var(--third-color);
}

@media (max-width: 768px) {
  .brand-process::before {
    left: 40px;
  }

  .process-step {
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
  }

  .step-number {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }
}

#team-training {
  background-color: var(--second-color);
  color: var(--first-color);
  padding: 5rem 0;
}

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

.module-card {
  background: var(--first-color);
  color: var(--second-color);
  padding: 2.5rem;
  border-radius: 1rem;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.module-card:hover::before {
  opacity: 1;
}

.module-card:hover {
  transform: translateY(-8px);
  border-color: var(--first-color);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.module-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.module-header i {
  font-size: 2.5rem;
  color: var(--second-color);
}

.module-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.module-card p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--third-color);
}

.module-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.module-features li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--third-color);
}

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

@media (max-width: 768px) {
  .training-modules {
    grid-template-columns: 1fr;
  }
}

#benefits {
  background: linear-gradient(
    135deg,
    var(--first-color) 0%,
    rgba(0, 0, 0, 0.05) 100%
  );
  color: var(--second-color);
  padding: 5rem 0;
}

.benefits-showcase {
  text-align: center;
}

.benefits-showcase h2 {
  font-size: 2.8rem !important;
  margin-bottom: 1.5rem;
}

.benefits-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--third-color);
}

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

.benefit-item {
  background: var(--second-color);
  color: var(--first-color);
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-item:hover {
  transform: translateY(-8px);
  border-color: var(--first-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  font-size: 3.5rem;
  color: var(--first-color);
  margin-bottom: 1.5rem;
}

.benefit-item h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.benefit-item p {
  line-height: 1.7;
  color: var(--greeting);
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

#cta-section {
  background-color: var(--second-color);
  color: var(--first-color);
  padding: 5rem 0;
}

.cta-wrapper {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-wrapper h2 {
  font-size: 2.8rem !important;
  margin-bottom: 1.5rem;
}

.cta-wrapper p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--greeting);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  #cta-section {
    padding: 3rem 0;
  }

  .cta-wrapper h2 {
    font-size: 1.8rem !important;
  }
}

.div__centered__btn {
  text-align: center;
  margin-top: 3rem;
}
