:root {
  --primary-pink: #f4a5b0;
  --primary-blue: #243fc1;
  --white: #ffffff;
  --light-gray: #f5f5f5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: var(--white);
}

/* Navbar Styles */
.navbar {
  background-color: var(--white);
  padding: 1.41rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  position: relative;
}

.logo {
  flex: 0 0 auto;
}

.logo img {
  max-width: 120px;
  height: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0 auto;
  padding: 0;
}

.nav-item a {
  text-decoration: none;
  color: #243fc1;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-item a:hover {
  color: var(--primary-pink);
}

.auth-buttons {
  display: flex;
  gap: 1rem;
  margin-left: auto;
}

.btn {
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-register {
  background-color: var(--primary-pink);
  color: var(--white);
  border: 2px solid var(--primary-pink);
  padding: 0.3rem 1rem;
  font-size: 0.9rem;
}

.btn-register:hover {
  background-color: #e8919c;
  border-color: #e8919c;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #243fc0;
  cursor: pointer;
  padding: 0.5rem;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu-btn::before,
.mobile-menu-btn::after,
.mobile-menu-btn span {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #243fc0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.mobile-menu-btn::before {
  top: 10px;
}

.mobile-menu-btn span {
  top: 50%;
  transform: translate(-50%, -50%);
}

.mobile-menu-btn::after {
  bottom: 10px;
}

.mobile-menu-header {
  display: none;
}

/* Location Section Styles */
.location-section {
  padding: 8rem 2rem 6rem;
  background-color: var(--white);
}

.location-title {
  text-align: center;
  margin-bottom: 1rem;
}

.location-title h2 {
  font-size: 2.5rem;
  color: var(--primary-pink);
  font-weight: 700;
}

.korean-text {
  text-align: center;
  font-size: 2.3rem;
  color: #243fc1;
  font-weight: 600;
  margin-bottom: 3rem;
}

.locations-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
}

.location-card {
  background: var(--white);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.location-image {
  width: 100%;
  height: 300px;
  max-width: 100%;
  margin: 0;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.location-card:hover .location-image img {
  transform: scale(1.05);
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.location-name {
  font-size: 1.5rem;
  color: var(--primary-pink);
  margin-bottom: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem 0 2rem;
}

.location-name i {
  color: var(--primary-pink);
}

.location-address {
  color: #243fc1;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding: 0 2rem;
}

.location-floor {
  color: #243fc1;
  font-size: 1rem;
  font-style: italic;
  padding: 0 2rem;
}

.map-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--primary-pink);
  color: var(--white);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin: 1.5rem 2rem 2rem;
}

.map-button:hover {
  background-color: var(--primary-blue);
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-container {
    padding-left: 4rem;
  }

  .logo {
    margin: 0;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--white);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    margin: 0;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem 1rem;
    border-bottom: 1px solid #eee;
    position: relative;
    width: 100%;
    padding-left: 0px;
  }

  .mobile-menu-logo {
    height: 40px;
    width: auto;
    display: block;
    margin: 0;
  }

  .mobile-menu-close {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #243fc0;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }

  .nav-menu.active {
    display: flex;
    left: 0;
  }

  .nav-item {
    width: 100%;
    text-align: left;
  }

  .nav-item a {
    display: block;
    padding: 0.8rem 0;
    font-size: 1.1rem;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
  }

  .nav-overlay.active {
    display: block;
  }

  .location-section {
    padding: 6rem 1rem 4rem;
  }

  .location-title h2 {
    font-size: 2rem;
  }

  .locations-container {
    grid-template-columns: 1fr;
  }

  .location-card {
    padding: 0;
  }

  .location-name,
  .location-address,
  .location-floor {
    padding: 0 1.5rem;
  }

  .map-button {
    margin: 1.5rem 1.5rem 1.5rem;
  }
}

:root {
  --primary-pink: #f4a5b0;
  --primary-blue: #243fc1;
  --white: #ffffff;
  --light-gray: #f5f5f5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: var(--white);
}

.navbar {
  background-color: var(--white);
  padding: 1.41rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  position: relative;
}

.logo {
  flex: 0 0 auto;
}

.logo img {
  max-width: 120px;
  height: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0 auto;
  padding: 0;
}

.nav-item a {
  text-decoration: none;
  color: #243fc1;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-item a:hover {
  color: var(--primary-pink);
}

.auth-buttons {
  display: flex;
  gap: 1rem;
  margin-left: auto;
}

.btn {
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-login {
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-login:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

.btn-register {
  background-color: var(--primary-pink);
  color: var(--white);
  border: 2px solid var(--primary-pink);
  padding: 0.3rem 1rem;
  font-size: 0.9rem;
}

.btn-register:hover {
  background-color: #e8919c;
  border-color: #e8919c;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #243fc0;
  cursor: pointer;
  padding: 0.5rem;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu-btn i {
  display: none;
}

.mobile-menu-btn::before,
.mobile-menu-btn::after,
.mobile-menu-btn span {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #243fc0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.mobile-menu-btn::before {
  top: 10px;
}

.mobile-menu-btn span {
  top: 50%;
  transform: translate(-50%, -50%);
}

.mobile-menu-btn::after {
  bottom: 10px;
}

.mobile-menu-header {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-container {
    padding-left: 4rem;
  }

  .logo {
    margin: 0;
  }

  .nav-container {
    justify-content: space-between;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--white);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    margin: 0;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem 1rem;
    border-bottom: 1px solid #eee;
    position: relative;
    width: 100%;
    padding-left: 0px;
  }

  .mobile-menu-logo {
    height: 40px;
    width: auto;
    display: block;
    margin: 0;
  }

  .mobile-menu-close {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #243fc0;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }

  .mobile-menu-close:hover {
    color: var(--primary-pink);
  }

  .nav-menu.active {
    display: flex;
    left: 0;
  }

  .nav-item {
    width: 100%;
    text-align: left;
  }

  .nav-item a {
    display: block;
    padding: 0.8rem 0;
    font-size: 1.1rem;
  }

  .auth-buttons {
    flex-direction: row;
    width: auto;
  }

  .btn {
    text-align: center;
    white-space: nowrap;
  }

  /* Add overlay when menu is active */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
  }

  .nav-overlay.active {
    display: block;
  }
}

/* Hero Section Styles */
.hero-section {
  margin-top: 80px;
  position: relative;
  height: auto;
  background: #fff;
}

.splide {
  height: auto;
}

.splide__track,
.splide__list {
  height: auto;
}

.splide__slide {
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
  background: #fff;
}

.slide-image-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 16/9;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.slide-content {
  width: 50%;
  padding: 4rem;
  text-align: left;
  color: #243fc0;
}

.slide-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-pink);
  text-shadow: none;
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: none;
  color: #243fc1;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--primary-pink);
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--primary-blue);
  transform: translateY(-2px);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02));
}

/* Custom Splide Styles */
.splide__pagination__page {
  background: #ddd;
}

.splide__pagination__page.is-active {
  background: var(--primary-pink);
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
  }

  .slide-image-container {
    aspect-ratio: 16/9;
  }

  .slide-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .slide-content {
    padding: 2rem;
    text-align: center;
  }

  .slide-content h1 {
    font-size: 2.5rem;
  }

  .slide-content p {
    font-size: 1rem;
  }
}

/* Service Section Styles */
.service-section {
  padding: 6rem 2rem;
  background-color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-pink);
  font-weight: 700;
}

.korean-text {
  font-size: 1.2rem;
  color: #243fc1;
  margin-top: 0.5rem;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0 1rem;
  justify-content: center;
}

.service-card {
  flex: 0 1 calc(33.333% - 2rem);
  max-width: 384px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* First row - 3 cards */
.service-card:nth-child(-n + 3) {
  flex: 0 1 calc(33.333% - 2rem);
}

/* Second row - 2 cards */
.service-card:nth-child(n + 4) {
  flex: 0 1 384px;
  margin: 0 1rem;
}

.service-image {
  width: 100%;
  /* height: 250px; */
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-content {
  padding: 1.5rem;
  text-align: center;
}

.service-content h3 {
  font-size: 1.5rem;
  color: var(--primary-pink);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.service-content .korean-text {
  display: block;
  color: var(--primary-blue);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-content p {
  color: var(--primary-blue);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.service-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--primary-pink);
  color: var(--white);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-button:hover {
  background-color: var(--primary-blue);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .service-card {
    flex: 0 1 calc(50% - 2rem);
  }

  .service-card:nth-child(-n + 3),
  .service-card:nth-child(n + 4) {
    flex: 0 1 calc(50% - 2rem);
    margin: 0;
  }
}

@media (max-width: 768px) {
  .service-section {
    padding: 4rem 1rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .service-card,
  .service-card:nth-child(-n + 3),
  .service-card:nth-child(n + 4) {
    flex: 0 1 100%;
    margin: 0;
  }
}

/* Catalog Section Styles */
.catalog-section {
  padding: 6rem 2rem;
  background-color: var(--light-gray);
}

.catalog-title {
  text-align: center;
  margin-bottom: 1rem;
}

.catalog-title h2 {
  font-size: 2.5rem;
  color: var(--primary-pink);
  font-weight: 700;
}

.catalog-subtitle {
  text-align: center;
  margin-bottom: 3rem;
  color: #243fc1;
  font-size: 1.1rem;
}

.catalog-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding: 0 1rem;
}

.catalog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.catalog-image {
  width: 100%;
  height: 0;
  padding-bottom: 150%;
  position: relative;
  overflow: hidden;
}

.catalog-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
  transition: transform 0.3s ease;
  background-color: #f5f5f5;
}

.catalog-card:hover .catalog-image img {
  transform: scale(1.1);
}

.catalog-content {
  padding: 2rem;
  text-align: center;
  background: #233fc2;
}

.catalog-content h3 {
  font-size: 1.5rem;
  color: var(--primary-pink);
  margin-bottom: 1rem;
  font-weight: 600;
}

.catalog-content p {
  color: #243fc1;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.catalog-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--primary-pink);
  color: var(--white);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.catalog-button:hover {
  background-color: var(--primary-blue);
  transform: translateY(-2px);
}

.frame-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-pink);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .catalog-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .catalog-section {
    padding: 4rem 1rem;
  }

  .catalog-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .catalog-image {
    width: 100%;
    padding-bottom: 150%;
  }

  .catalog-title h2 {
    font-size: 2rem;
  }
}

/* Video Collection Section Styles */
.video-section {
  padding: 6rem 2rem;
  background-color: var(--light-gray);
}

.video-title {
  text-align: center;
  margin-bottom: 1rem;
  margin-top: -5rem;
}

.video-title h2 {
  font-size: 2.5rem;
  color: var(--primary-pink);
  font-weight: 700;
}

.video-subtitle {
  text-align: center;
  margin-bottom: 3rem;
  color: #243fc1;
  font-size: 1.1rem;
}

.video-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 1rem;
}

.video-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
  position: relative;
  padding-bottom: 210%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-content {
  padding: 1.5rem;
  text-align: center;
  background: var(--white);
}

.video-content h3 {
  font-size: 1.2rem;
  color: var(--primary-pink);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.video-content p {
  color: #243fc1;
  font-size: 0.9rem;
  line-height: 1.6;
}

.social-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-pink);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .video-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .video-section {
    padding: 4rem 1rem;
  }

  .video-container {
    grid-template-columns: 1fr;
  }

  .video-title h2 {
    font-size: 2rem;
  }
}

/* Social Media Section Styles */
.social-media-section {
  padding: 6rem 2rem;
  background-color: var(--white);
}

.social-media-title {
  text-align: center;
  margin-bottom: 1rem;
}

.social-media-title h2 {
  font-size: 2.5rem;
  color: var(--primary-pink);
  font-weight: 700;
}

.social-handles {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0 3rem;
}

.social-handle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #243fc1;
  font-size: 1.2rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-handle:hover {
  color: var(--primary-pink);
}

.social-handle i {
  font-size: 1.5rem;
}

.social-feed-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 1rem;
}

.social-post {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.social-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.post-wrapper {
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
}

.post-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.platform-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-pink);
  color: var(--white);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 1;
}

@media (max-width: 1024px) {
  .social-feed-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .social-media-section {
    padding: 4rem 1rem;
  }

  .social-feed-container {
    grid-template-columns: 1fr;
  }

  .social-media-title h2 {
    font-size: 2rem;
  }

  .social-handles {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
