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

html,body {
    margin: 0;
      font-family: 'Montserrat';
    width: 100%;
    overflow-x: hidden;
}


/* top-section */


.color{
  color:#c83063;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    

    height: 57px;
    padding: 0 27px;

    background-color: #1F2F5D;
    
}


.top-bar-left-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar img {
  
    padding-right: 11.25px;
    border-right: 1.13px solid #FFFFFF;
}

.top-bar-text {
    font-size: 16px;
    letter-spacing: 0.11em;
    color: #FFFFFF;
    text-decoration:none;
   
}

.uder-line{
  text-decoration:none;
  color:#ffffff;
  font-weight:500;
}

.top-bar-right-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-link {
    font-size: 16px;
    letter-spacing: 0.11em;
    color: #FFFFFF;
    text-decoration: none;
}

.top-bar-right-dot {
    width: 4.5px;
    height: 4.5px;
    background-color: #FFFFFF;
    border-radius: 50%;
}


.navbar-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position:relative;
    width: 100%;
    
   
    
    z-index: 1000;
    padding: 18px 27px;
    

    background-color: #FFFFFF;
}
.navbar-section.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.top-bar,
.navbar-section {
    width: 100%;
    max-width: 100%;
}


.navbar-left,
.navbar-right {
    display: flex;
    gap: 20px;
}

.navbar-left-right-links {
   font-size:15.75px;
    letter-spacing: 0.11em;
    color: #1F2F5D;
    text-decoration: none;
}

.navbar-logo img {
    width: 78px;
    height: auto;
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: #1F2F5D;
}


.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 24px;
    background-color: #FFFFFF;
    border-top: 1px solid #ddd;

     position: fixed;         
    top: 62px;        
                
    left: 0;                   
    width: 100%;               
    z-index: 999;              
}

.mobile-menu a {
    padding: 12px 0;
    font-size: 14px;
   
    color: #1F2F5D;
    text-decoration: none;
    font-family: 'Montserrat';
}

.mobile-menu hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 16px 0;
}

.mobile-menu.active {
    display: flex;
}


@media (max-width: 768px) {

    .top-bar {
        display: none;
    }

    .navbar-section {
        width: 100%;
        padding: 16px 20px;
    }

    .navbar-left,
    .navbar-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    .top-bar {
        display: none;
    }

    .navbar-section {
        width: 100%;
        padding: 16px 24px;
    }

    .navbar-left,
    .navbar-right {
        display: none;
    }

    
    .hamburger {
        display: flex;
    }
}
 


/* Teens Page Styling */
:root {
  --deep-teal: #003b3b;
    --sky-blue: #1fb6ff; 
    --accent-blue: #1fb6ff; 
    --text-white: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
    --dark-green: #003b3b;
    --section-width: 100%; 
    --section-height: auto;
}

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

body {
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
}

.hero-section {
  width: 100%;
  /* max-width: 1280px; */
  height: 797px;
  margin: 0 auto;
  background-image: url("assets/images/teens-page-hero-section-image.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  /* width: 100%; */
  max-width: 1280px;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.hero-container {
  max-width: 500px;
  color: var(--text-white);
}

.label-wrapper {
  display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.line {
  width: 30px;
  height: 1px;
  background-color: #1fb6ff;
}

.label-text {
  font-family: "Inter";
  font-weight: 500;
  font-style: Medium;
  font-size: 9.66px;
  line-height: 14.49px;
  letter-spacing: 3.38px;
  text-transform: uppercase;
  color: #1fb6ff;
}

.hero-container h1 {
  margin-bottom: 25px;
  font-family: "Playfair Display";
font-weight: 600;
font-style: "SemiBold";
font-size: 77.28px;
line-height: 73.42px;
letter-spacing: -1.55px;
color: #ffffff;
}

.accent-text {
  font-family: "Playfair Display", serif; 
  font-style: italic;
  color: #1fb6ff;
}

.hero-desc {
  width: 347.7735900878906px;
height: 49px;
opacity: 1;
font-family: "Inter";
font-weight: 400;
font-style: "Regular";
font-size: 13.52px;
line-height: 24.34px;
letter-spacing: 0px;
color: #FFFFFF80;

}



@media (max-width: 768px) {
  .hero-section {
    height: 100vh;
  }
  .hero-overlay {
    padding: 40px;
  }
  h1 {
    font-size: 60px;
  }
}

/* Journeys Designed Section Style  */

.journeys-section {
    width: var(--section-width);
    min-height: var(--section-height);
    padding: 128.81px 163.42px; 
    display: flex;
    flex-direction: column;
    gap: 51.52px; 
    background: #FDFAF6;
}

.label-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.line {
    width: 32px;
    height: 1px;
    background-color: var(--accent-blue);
}

.label-text {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--accent-blue);
    font-weight: 600;
}

.main-title {
    font-size: 52px;
    line-height: 1.1;
    color: var(--dark-green);
    font-weight: 700;
}

.italic-blue {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--accent-blue);
    font-weight: 400;
}

/* Grid System */
.bento-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto auto auto;
    gap: 24px;
}

.card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-size: cover;
    background-position: center;
    color: var(--text-white);
    min-height: 240px;
}

/* Specific Card Layouts */
.card-himalayan { 
    grid-row: span 2; 
    background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=800');
}
.card-european { 
    background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1502602898657-3e91760cbb34?auto=format&fit=crop&w=500');
}
.card-coastal { 
    background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1493976040374-85c8e12f0c0e?auto=format&fit=crop&w=500');
}
.card-japan { 
    grid-column: span 2; 
    background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1524413840807-0c3cb6fa808d?auto=format&fit=crop&w=1200');
}

/* Card Elements */
.tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    width: fit-content;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    text-transform: capitalize;
}

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.text-left h3 { font-size: 20px; margin-bottom: 4px; }
.text-left p { font-size: 13px; opacity: 0.8; }

.info-right { text-align: right; }
.days { display: block; font-size: 14px; font-weight: 700; color: var(--accent-blue); }
.price { font-size: 11px; opacity: 0.7; }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .journeys-section { width: 100%; padding: 60px 40px; }
    .main-title { font-size: 40px; }
}

@media (max-width: 768px) {
    .bento-grid { grid-template-columns: 1fr; }
    .card-himalayan, .card-japan { grid-column: span 1; grid-row: span 1; }
    .journeys-section { padding: 40px 20px; }
}


/* Tranformations section styling */
:root {
    --deep-teal: #002B2B;
    --card-teal: rgba(255, 255, 255, 0.03);
    --accent-blue: #1FB6FF;
    --text-white: #FFFFFF;
    --text-dim: rgba(255, 255, 255, 0.5);
}

.transformations-section {
    width: 100%;
    /* max-width: 1280px; */
    min-height: 1655.47px;
    margin: 0 auto;
    background-color: var(--deep-teal);
    padding: 120px 80px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Header Area */
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 20px;
}

.transform-title {
    font-family: "Playfair Display", serif;
    font-size: 64px;
    color: var(--text-white);
    line-height: 1.1;
}

.transform-subtitle {
    max-width: 350px;
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}

/* Pillar Cards */
.pillars-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.pillar-card {
    display: flex;
    height: 400px; /* Scaled to fit total height */
    background: var(--card-teal);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
}

.pillar-info {
    flex: 1;
    padding: 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.pillar-number {
    position: absolute;
    top: 60px;
    left: 60px;
    font-family: "Playfair Display", serif;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.1);
}

.pillar-icon {
    width: 40px;
    height: 40px;
    background: rgba(31, 182, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 18px;
}

.pillar-text h3 {
    font-size: 28px;
    color: var(--text-white);
    margin-bottom: 12px;
}

.pillar-text p {
    font-size: 16px;
    color: var(--text-dim);
    line-height: 1.5;
}

.pillar-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 1024px) {
    .transformations-section { padding: 80px 40px; }
    .header-flex { flex-direction: column; align-items: flex-start; gap: 20px; }
    .transform-title { font-size: 48px; }
}

@media (max-width: 768px) {
    .pillar-card {
        flex-direction: column;
        height: auto;
    }
    .pillar-image {
        height: 250px;
        order: -1; /* Image appears above text on mobile */
    }
    .pillar-info { padding: 40px 30px; }
    .pillar-number { top: 30px; left: 30px; font-size: 32px; }
}

/* Adventure Section Styling  */

:root {
    --bg-cream: #FBF9F4;
    --card-bg: #F5F4F0;
    --accent-blue: #1FB6FF;
    --text-dark: #003B3B;
    --text-muted: #6B7280;
}

.assurance-section {
    width: 100%;
    /* max-width: 1280px; */
    height: 639.8px;   
    margin: 0 auto;
    background-color: var(--bg-cream);
    padding: 128.81px 163.42px 0 163.42px; 
    box-sizing: border-box;
}

.assurance-container {
    display: flex;
    flex-direction: column;
    gap: 51.52px; 
    max-width: 1280px;
     margin: 0 auto;
     padding: 0px 163.42px 0 163.42px; 
}

/* Header Styling */
.assurance-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.header-left .label-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.header-left .line {
    width: 30px;
    height: 1px;
    background-color: var(--accent-blue);
}

.header-left .label-text {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--accent-blue);
    font-weight: 600;
}

.main-title {
    font-size: 48px;
    color: var(--text-dark);
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
}

.italic-blue {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--accent-blue);
    font-weight: 400;
}

.header-right .description {
    max-width: 400px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Grid Styling */
.assurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.assurance-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
}

.assurance-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 48px;
    height: 48px;
    background: rgba(31, 182, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.card-text h3 {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.card-text p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

/* Responsive Scaling */
@media (max-width: 1024px) {
    .assurance-section { 
        height: auto; 
        padding: 80px 40px; 
    }
    .assurance-grid { grid-template-columns: repeat(2, 1fr); }
    .assurance-container{
      flex-direction: column;
      width: 100%;
    }
}

@media (max-width: 768px) {
    .assurance-header { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 20px; 
    }
    .assurance-grid { grid-template-columns: 1fr; }
    .main-title { font-size: 36px; }
    .assurance-container{
      flex-direction: column;
      width: 100%;
    }
}


/* Growth Section Styling */
:root {
    --deep-teal: #002B2B;
    --accent-blue: #1FB6FF;
    --text-white: #FFFFFF;
    --text-dim: rgba(255, 255, 255, 0.6);
    --card-bg: rgba(255, 255, 255, 0.05);
}

.growth-stats-section {
    width: 100%;
    /* max-width: 1280px; */
    height: 686.74px; 
    margin: 0 auto;
    background-color: var(--deep-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 100px;
    box-sizing: border-box;
    overflow: hidden;
}

.growth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    width: 1280px;
    align-self: center;
    margin: 0 auto;
}

/* Text Content Styling */
.growth-content .main-title {
    font-size: 48px;
    color: var(--text-white);
    line-height: 1.1;
    margin: 20px 0;
}

.growth-desc {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.6;
    max-width: 420px;
    margin-bottom: 30px;
}

.growth-checklist {
    list-style: none;
    padding: 0;
}

.growth-checklist li {
    color: var(--text-white);
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    color: var(--accent-blue);
    font-weight: bold;
}

/* Stats Cards Styling */
.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--accent-blue);
    font-weight: 600;
    min-width: 100px;
}

.stat-label {
    color: var(--text-dim);
    font-size: 14px;
}

/* Responsive Logic */
@media (max-width: 1024px) {
    .growth-stats-section {
        height: auto;
        padding: 80px 40px;
    }
    .growth-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .growth-content .main-title { font-size: 36px; }
    .stat-card { padding: 20px; gap: 15px; }
    .stat-number { font-size: 24px; min-width: 80px; }
}

/* stories section styling  */
:root {
    --bg-cream: #FBF9F4; 
    --accent-blue: #1FB6FF;
    --text-dark: #003B3B;
}

.moments-section {
    width: 100%;
    /* max-width: 1280px;  */
    height: 776.75px;  
    margin: 0 auto;
    background-color: var(--bg-cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 80px;
    box-sizing: border-box;
}

.moments-container{
 max-width: 100%;
  margin: 0 auto;
   /* height: 776.75px;   */
}

/* Header Styling */
.header-container {
    margin-bottom: 50px;
}

.label-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.line {
    width: 30px;
    height: 1px;
    background-color: var(--accent-blue);
}

.label-text {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent-blue);
    font-weight: 600;
    text-transform: uppercase;
}

.main-title {
    font-size: 52px;
    color: var(--text-dark);
    font-weight: 700;
    margin: 0;
}

.italic-blue {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--accent-blue);
}

/* Gallery Layout */
.frames-gallery {
    display: flex;
    gap: 24px;
    height: 480px; 
    align-self: center;
    width: 100%;
}

.frame-item {
    flex: 1;
    width: 200px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

/* Subtle hover effect for interactivity */
.frame-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Responsive Logic */
@media (max-width: 1024px) {
    .moments-section {
        height: auto;
        padding: 80px 40px;
    }
    .frames-gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        height: auto;
        gap: 20px;
    }
    .frame-item {
        height: 350px;
    }
    
}

@media (max-width: 600px) {
    .main-title { font-size: 36px; }
    .frames-gallery {
        grid-template-columns: 1fr;
        align-self: center;
        width: 100%;
    }
    .frame-item {
        height: 400px;
        align-self: center;
        width: 100%;
    }
}

/* Compass point Section styling  */
.compass-section {
    width: 100%;
    /* max-width: 1280px; */
    height: 799.22px;
    margin: 0 auto;
    padding: 128.81px 163.42px 0 163.42px;
    background-color: #FBF9F4;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.compass-container{
  width: 100%;
  max-width: 1280px;
margin: 0 auto;
margin-bottom: 50px;
}

.compass-header { margin-bottom: 40px; }

.main-title {
    font-size: 42px;
    color: #003B3B;
    font-weight: 700;
}

.italic-blue {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #1FB6FF;
}

.compass-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
}

/* Main Display Styling */
.main-display {
    height: 480px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: background-image 0.5s ease-in-out;
}

.main-display-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0, 59, 59, 0.8));
    color: white;
}

.location-tag { color: #1FB6FF; font-size: 14px; font-weight: 600; }
.main-display-overlay h3 { font-size: 28px; margin: 10px 0; }
.main-display-overlay p { opacity: 0.8; margin-bottom: 20px; }
.explore-link { color: #1FB6FF; text-decoration: none; font-weight: 600; }

/* List Styling */
.destination-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dest-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid transparent;
}

.dest-item img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; }
.dest-item h4 { font-size: 14px; color: #003B3B; margin: 0; }
.dest-item p { font-size: 12px; color: #666; margin: 0; }

.dest-item.active {
    background: #003B3B;
    color: white;
}

.dest-item.active p { color: #888; }
.dest-item.active h4 { color: white; }

/* Responsive */
@media (max-width: 1024px) {
    .compass-section { height: auto; padding: 60px 40px; }
    .compass-content { grid-template-columns: 1fr; }
}



/* Footer Section */


.footer {
  width: 100%;

  padding: 15px 32px;
  background: #f9fafb;
  display: flex;
  flex-direction: column;
}

.footer-top {
  display: flex;
  justify-content: center;
  border-bottom: 0.45px solid #e5e7eb;
  padding-bottom: 24px;
  gap: 180px;
}

.footer-column {
  width: 182px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column li {
  font-size: 18px;
  color: #374151;
  font-family: "Montserrat";
}

.footer-middle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 180px;
  padding-top:20px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  width: 80px;
}

.footer-tagline {
  font-size: 14px;
  color: #6b7280;
}

.footer-subscribe {
  position: relative;
  width: 260px;
}

.footer-subscribe input {
  width: 100%;
  height: 42px;
  padding: 0 90px 0 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
}

.footer-subscribe button {
  position: absolute;
  right: 4px;
  top: 4px;
  height: 34px;
  padding: 0 14px;
  border-radius: 6px;
  border: none;
  background: #000;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
}

.footer-description {
  width: 377px;
  font-size: 20px;
  line-height: 38px;
  text-align: center;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-social h4 {
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons img {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding: 18px 0;
  font-size: 13px;
  color: #6b7280;
  gap: 400px;
}

.footer-bottom p {
  font-size: 17px;
}

@media (max-width: 767px) {
  .footer {
    width: 100%;
    padding: 24px 16px;
    gap: 36px;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 24px;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    width: 100%;
    align-items: center;
  }

  .footer-column ul {
    align-items: center;
  }

  .footer-middle {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .footer-description {
    width: 100%;
    font-size: 18px;
    line-height: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer {
    width: 100%;
    padding: 40px 32px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    column-gap: 64px;
    row-gap: 32px;
    text-align: left;
  }

  .footer-column {
    width: 100%;
  }

  .footer-middle {
    gap: 24px;
  }

  .footer-description {
    width: 100%;
    max-width: 360px;
    font-size: 22px;
    line-height: 32px;
  }
}