:root {
  --primary-color: #f05f33;
  --text-dark: #000000;
  --text-light: #6b6b6b;
  --background-white: #ffffff;
  --text-on-primary: #fcfcfc;
  --background-white: #f5f5f5;
  --font-body: 'DM Sans', sans-serif;
  --font-heading: 'Merriweather', serif;
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  background-color: var(--background-white);
  color: var(--text-dark);
}

.page-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  gap: 18px;
  display: grid;
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, p {
  margin: 0;
}


/* CSS for section section:header */
.site-header {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  padding: 1rem 4rem;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.logo img {
  display: block;
  width: auto;
  height: 72px;
}

.main-navigation {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-links a {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.btn-submit-app {
  background-color: var(--primary-color);
  color: var(--text-on-primary);
  border-radius: 60px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.3s ease;
  width: fit-content;
}

    .btn-submit-app:hover {
        opacity: 0.9;
        color: var(--text-on-primary);
    }

.btn-icon-wrapper {
  background-color: var(--text-on-primary);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-icon-wrapper img {
  width: 12px;
  height: 12px;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  margin: 5px 0;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1200px) {
  .site-header {
    max-width: 100%;
  }
  .main-navigation {
    justify-content: flex-end;
    margin-right: 30px;
  }
}

@media (max-width: 1024px) {
  .main-navigation {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .site-header {
    justify-content: space-between;
  }
  .logo {
    flex-grow: 1;
  }
}

@media (max-width: 768px) {
  .site-header {
    top: 60px;
    width: 100%;
    max-width: 100%;
    padding: 0rem 2rem;
    height: 60px;
}

  .site-header .btn-submit-app {
    display: none;
  }
  .btn-submit-app {
    padding: 18px;
  }
}

/* CSS for section section:hero */
.hero-section {
  position: relative;
  padding-top: 186px;
  min-height: 944px;
}

.hero-bg-image {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  background-image: url('/assets/images/home2025/Hero_Banner_bg.png');
  background-size: cover;
  background-position: center;
  border-radius: 36px;
  z-index: 1;
}

.hero-content-container {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 100%;
  width: 60%;
}

.hero-tag {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 60px;
  padding: 10px 18px;
  font-size: 18px;
  line-height: 1;
}

.hero-title {
  font-family: 'Merriweather', serif;
  font-size: 64px;
  line-height: 1.25; /* 66px / 54px */
  color: var(--text-dark);
  margin: 12px 0;
  font-weight: 400;
}

.text-highlight {
  color: var(--primary-color);
  font-family: 'Merriweather', serif;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.5; /* 24px / 18px */
  max-width: 100%;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 48px 0;
}
.hero-links a {
    color: var(--primary-color);
}
.app-button img {
  height: 60px;
  display: block;
  transition: transform 0.3s ease;
}

.app-button:hover img {
  transform: scale(1.05);
}

.hero-showcase-image {
  margin-top: 3%;
  line-height: 0;
  width: 100%;
}

.hero-showcase-image img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .hero-section {
    padding-top: 160px;
    min-height: auto;
    padding-bottom: 60px;
  }
  .hero-title {
    font-size: 48px;
  }
  .hero-bg-image {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
  }
}

@media (max-width: 768px) {
  .hero-content-container {
    padding: 0 2rem;
  }
  .hero-showcase-image img {
    margin-bottom: 0px;
  }
  .hero-text-block {
    width: 100%;
  }
  .hero-section {
    padding-top: 180px;
    padding-bottom: 0px;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 18px;
  }
  .hero-buttons {
    gap: 20px;
    margin-top: 32px;
  }
  .app-button img {
    height: 50px;
  }
  .hero-showcase-image {
    margin-top: 50px;
  }
}






/* CSS from section:why-participate */
.why-participate-section {
    padding: 7% 0;
    overflow: hidden;
  }

  .section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 100%;
  }

  .tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 2rem;
    line-height: 1rem;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 60px;
    padding: 8px 18px;
    display: inline-block;
  }

  .main-title {
    font-family: 'Merriweather', serif;
    font-size: 60px;
    line-height: 74px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
  }

  .main-title .highlight {
    color: var(--primary-color);
  }

  .subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-light);
    margin: 0;
  }

  .features-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
  }

  .features-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    min-width: 300px;
  }

  .feature-card {
    background-color:#f5f5f5;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    height: 100%;
    border-radius: 24px;
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px; /* 30px gap from icon to title - 12px card gap */
  }

  .icon-wrapper.gradient-bg {
    background: linear-gradient(150deg, #f05f33 0%, rgba(43, 80, 170, 0.84) 103.33%);
  }
  
  .icon-wrapper img {
    max-width: 32px;
    max-height: 32px;
  }

  .card-title {
    font-family: 'Merriweather', serif;
    font-size: 30px;
    line-height: 38px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
  }

  .card-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-light);
    margin: 0;
    flex-grow: 1;
  }

  .learn-more {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1rem;
    color: var(--primary-color);
    margin-top: 12px; /* 24px gap from description - 12px card gap */
  }

  .arrow-icon {
    width: 24px;
    height: 24px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .arrow-icon img {
    width: 12px;
    height: 12px;
  }

  .feature-image-container {
    position: relative;
    width: 420px;           /* fixed width */
    height: auto;
    background-image: url("/assets/images/home2025/Img.png");
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    flex-shrink: 0;
    margin: 0 auto;         /* centers the image */
  }

  @media (max-width: 1200px) {
    .features-grid {
      flex-direction: column;
    }
    .feature-image-container {
      order: 1; /* Place image between the two columns */
    }
    .features-column:nth-of-type(1) {
      order: 0;
    }
    .features-column:nth-of-type(2) {
      order: 2;
    }
  }

  @media (max-width: 768px) {
    .feature-image-container{
      display: none;
    }
    .why-participate-section {
      padding: 60px 0;
    }
    .main-title {
      font-size: 48px;
      line-height: 56px;
    }
    .subtitle {
      font-size: 1rem;
      line-height: 22px;
    }
    .features-grid {
      align-items: stretch;
    }
    .features-column {
      flex-direction: column;
    }
    .feature-image-container {
      width: 100%;
      max-width: 100%;
      height: auto;
      aspect-ratio: 420 / 634;
      margin: 0 auto;
    }
    .main-app-image {
      width: 79%; /* 333/420 */
      height: 106%; /* 673/634 */
      top: 5%; /* 32/634 */
      left: 10.2%; /* 43/420 */
    }
    .floating-icon.icon-1 {
      top: 12.3%; /* 78/634 */
      left: 4.3%; /* 18/420 */
    }
    .floating-icon.icon-2 {
      top: 66.4%; /* 421/634 */
      left: 81.4%; /* 342/420 */
    }
  }
  
  @media (max-width: 768px) {
    .main-title {
      font-size: 36px;
      line-height: 44px;
    }
    .floating-icon {
      width: 48px;
      height: 48px;
    }
    .floating-icon img {
      max-width: 24px;
      max-height: 24px;
    }
  }






.section-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 3% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.tag {
  border: 1px solid var(--primary-color);
  border-radius: 60px;
  padding: 8px 18px;
  font-size: 2rem;
  line-height: 1rem;
  color: var(--primary-color);
  font-family: 'DM Sans', sans-serif;
}

.section-title {
  font-family: 'Merriweather', serif;
  font-size: 54px;
  line-height: 66px;
  font-weight: 400;
  color: var(--text-dark);
  margin: 0;
}

.section-title .highlight {
  font-family: 'Merriweather', serif; /* Ensure font consistency */
  color: var(--primary-color);
}

.section-subtitle {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-light);
  margin: 0;
}

@media (max-width: 1024px) {
  .section-container {
    padding: 60px 30px;
  }
  .section-title {
    font-size: 42px;
    line-height: 54px;
  }
}

@media (max-width: 768px) {
  .section-container {
    padding: 18% 0;
  }
  .section-title {
    font-size: 36px;
    line-height: 48px;
  }
  .section-subtitle {
    font-size: 1rem;
    line-height: 22px;
  }

}

/* CSS from section:process */
.process-section {
  background-image: url('/assets/images/home2025/4ac6ed4b9e51817f0e1de58304e48d054e3ad96b.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  width: 100%;
  max-width: 100%;
  padding: 0 10%;
}

.step-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.step-icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(150deg, #f05f33 0%, rgba(43, 80, 170, 0.84) 103.33%);
}

.step-icon-wrapper img {
  width: 48px;
  height: 48px;
}

.step-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-title {
  font-family: 'Merriweather', serif;
  font-size: 30px;
  line-height: 38px;
  font-weight: 400;
  margin: 0;
  color: var(--text-dark);
}

.step-title .step-number {
  font-family: var(--font-special);
}

.step-description {
  font-size: 18px;
  line-height: 26px;
  color: var(--text-light);
  margin: 0;
}

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .step-card {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}


@media (max-width: 768px) {
  .steps-grid {
    padding: 0 2rem;
  }
  .step-card {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

/* CSS from section:contests */
.contests-section {
  background-color: var(--color-white);
}

.contests-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 80%;
  max-width: 80%;
  padding:0 10%;
}

.contest-card {
  background-color: #f5f5f5;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.contest-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contest-title {
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 38px;
  font-weight: 400;
  margin: 0;
  color: var(--text-dark);
}

.contest-details {
  display: flex;
  flex-direction: row;
  gap: 6px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.detail-title {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--text-dark);
}

.detail-text {
  font-size: 18px;
  line-height: 24px;
  color: var(--text-light);
  margin: 0;
}

.btn-participate {
  background-color: var(--primary-color);
  border-radius: 60px;
  padding: 12px 12px 12px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-off-white);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1rem;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.btn-participate:hover {
  background-color: #d95126;
}


@media (max-width: 1024px) {
  .contests-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contest-details {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .contests-grid {
    padding:0 2rem;
  }
  .contest-title{
    font-size: 30px;
  }
}





/* CSS from section:past-winners */

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.past-winners-container {
  max-width: 66%;
  margin: 0 auto;
  padding-bottom: 3%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.winners-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  max-width: 100%;
}

.tag {
  font-family: var(--font-body);
  font-size: 2rem;
  line-height: 1;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 60px;
  padding: 8px 18px;
  margin: 0;
}

.main-title {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 400;
  line-height: 66px;
  color: var(--text-dark);
  margin: 0;
}

.main-title .highlight {
  color: var(--primary-color);
}

.description {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-light);
  margin: 0;
}

.winners-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(308px, 1fr));
  gap: 24px;
  justify-content: center;
}

.winners-grid a{
    text-decoration:underline;
}
.winners-grid a:hover{
    color: var(--primary-color);
}

.winner-card {
  background-color: var(--color-background-grey);
  border-radius: 24px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-image-container {
  width: 100%;
  height: auto;
  border-radius: 18px;
  overflow: hidden;
  display: flex;              /* center image properly */
  justify-content: center;
  align-items: center;
  background-color: var(--color-surface); /* fallback bg if img has empty space */
}

.winner-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;        /* show full image without cropping */
  border-radius: 12px;        /* optional styling */
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-tag {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 60px;
  padding: 6px 12px;
  margin: 0;
  align-self: flex-start;
}

.card-content .card-title{
  font-size: 24px;
}

.card-description {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-light);
  margin: 0;
  min-height: 72px; /* To maintain alignment */
}

.card-category {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.category-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text-dark);
  margin: 0;
}

.category-value {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-light);
  margin: 0;
}

@media (max-width: 1200px) {
  .winners-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .past-winners-section {
    padding: 0;
  }
  .container {
    padding: 0 20px;
    gap: 32px;
  }
  .main-title {
    font-size: 40px;
    line-height: 52px;
  }
  .winners-header {
    padding: 0 2rem;
}
  .winners-grid {
    grid-template-columns: 1fr;
    gap: 0px;
  }
}


:root {
  --primary-color: #f05f33;
  --text-color-dark: #000000;
  --text-color-light: #6b6b6b;
  --background-light: #ffffff;
  --background-dark: #fcfcfc;
  --border-color: #dadada;
  --border-color-light: rgba(107, 107, 107, 0.3);
  --font-primary: 'DM Sans', sans-serif;
  --font-serif: 'Merriweather', 'Georgia', serif;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  color: var(--text-color-light);
  background-color: var(--background-light);
  font-size: 18px;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

.page-wrapper {
  max-width: 100%;
  margin: 0 auto;
  background-color: var(--background-light);
  overflow: hidden;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-serif);
  color: var(--text-color-dark);
}

p {
  margin: 0;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  border: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--background-dark);
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-primary .btn-icon {
  background-color: var(--background-dark);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CSS from section:about */
.about-section {
  background-image: url('/assets/images/home2025/09eab02d40bc70559ab20837a557378ffc00f9a9.png');
  background-size: cover;
  background-position: center;

}
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
  max-width: 100%;
  width: 100%;
  padding:0 10%;
}

.about-image-wrapper {
  flex: 1;
  max-width: 100%;
}

.about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.about-content .tag {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 18px;
  border-radius: 60px;
  font-size: 2rem;
  line-height: 1;
}
.about-title {
  font-family: 'Merriweather', serif;
  font-size: 54px;
  line-height: 1.22;
  font-weight: 400;
  margin-top: -12px;
}
.about-title .text-highlight {
  font-family: 'Merriweather', serif;
  color: var(--primary-color);
}

.about-content a{
  margin-top: 3rem !important;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.feature-icon {
  background-color: var(--primary-color);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding: 8px;
}
.feature-item strong {
  font-weight: 700;
  color: var(--text-color-dark);
}
.about-content .btn {
  margin-top: 18px;
}
@media (max-width: 1200px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .about-image-wrapper {
    flex-basis: auto;
    width: 100%;
    max-width: 100%;
  }
  .about-content {
    align-items: center;
  }
}
@media (max-width: 768px) {
  .about-title {
    font-size: 44px;
  }
  .about-container {
    padding:12% 2rem;
  }
  .about-content a {
      margin-top: 1rem !important;
  }
  .feature-item p{
    text-align: left;
  }
}
@media (max-width: 480px) {
  .about-title {
    font-size: 36px;
  }
}

/* CSS from section:footer */
.site-footer {
  background-image: url('/assets/images/home2025/fdfcd464eb35d17156500de4e08e7991712bd585.png');
  background-size: cover;
  background-position: center;
  padding-top: 7%;
  padding-bottom: 60px;
}
.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.footer-top {
  display: flex;
  align-items: center; /* Vertically centers child items */
  justify-content: center; /* Horizontally centers child items (optional) */
  gap: 12%;
}
.footer-intro {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-logo {
  width: 244px;
  height: auto;
}
.footer-newsletter {
  flex-shrink: 0;
  width: 36%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-newsletter h3 {
  font-size: 30px;
  line-height: 1.27;
  font-weight: 400;
}
.footer-newsletter p {
  line-height: 1.5;
  margin-bottom: 12px;
}
.newsletter-form {
  display: flex;
  gap: 18px;
}
.newsletter-form .input-wrapper {
  flex-grow: 1;
}
.newsletter-form input {
  width: 100%;
  padding: 18px;
  border-radius: 60px;
  border: 1px solid var(--border-color);
  background-color: var(--background-light);
  font-family: var(--font-primary);
  font-size: 18px;
  height: 60px;
}
.newsletter-form input::placeholder {
  color: var(--text-color-light);
  opacity: 1;
}
.footer-divider {
  border-top: 1px solid #dadada;
  height: auto;
  width: 100%;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 306px;
  max-width: 100%;
  width: 100%;
}
.footer-col-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.socials {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.socials h4 {
  font-size: 30px;
  line-height: 1.5;
  font-weight: 400;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--border-color-light);
  transition: all 0.3s ease;
}
.social-icon.active, .social-icon:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.copyright {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}
.copyright strong {
  font-weight: 700;
  color: var(--primary-color);
}
.footer-col-right {
  display: flex;
  gap: 7rem;
}
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-col h4 {
  font-size: 30px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 18px;
}
.footer-links-col a:hover {
  color: var(--primary-color);
}
@media (max-width: 1200px) {
  .footer-top {
    gap: 60px;
  }
  .footer-newsletter {
    width: auto;
    flex-grow: 1;
    max-width: 100%;
  }
  .footer-col-right {
    gap: 40px;
  }
}
@media (max-width: 1024px) {
  .footer-top, .footer-bottom {
    flex-direction: column;
    gap: 40px;
  }
  .footer-newsletter {
    max-width: 100%;
  }
  .footer-col-right {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }
  .social-links {
    flex-wrap: wrap;
  }
}