/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #96E6FF 0%, #96A7FF 81%);
  padding: 2rem;
}

/* Wrapper */
.wrapper {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Container */
.main-container {
  width: 100%;
  background: linear-gradient(45deg, #000000 0%, rgba(0, 0, 0, 0.761) 100%);
  border-radius: 0;
  box-shadow: 0 1.375rem 5rem 2rem rgba(0, 0, 0, 0.251);
  overflow: hidden;
}

/* Content Wrapper */
.content-wrapper {
  display: flex;
  align-items: stretch;
  min-height: 500px;
}

/* Image Section */
.image-section {
  flex: 0 0 40%;
  background: linear-gradient(to bottom, rgba(128, 128, 128, 0.1), rgba(128, 128, 128, 0.05));
  position: relative;
  overflow: hidden;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Text Section */
.text-section {
  flex: 0 0 60%;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.text-section h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.125rem;
  margin-bottom: 1.75rem;
}

.text-section p {
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 1.75rem;
  text-align: justify;
}

.text-section p strong {
  font-weight: 700;
}

/* Social Icons */
.social-icons {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1.5px solid #96BAFF;
  border-radius: 5px;
  transition: all 0.25s ease;
}

.social-icons li a:hover {
  border-color: #C9F2FF;
}

.social-icons li a svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: #96D9FF;
  transition: fill 0.25s ease;
}

.social-icons li a:hover svg {
  fill: #C9F2FF;
}

/* Responsive Design */
@media (max-width: 980px) {
  .content-wrapper {
    flex-direction: column;
  }

  .image-section {
    flex: 0 0 auto;
    min-height: 400px;
  }

  .text-section {
    flex: 0 0 auto;
  }

  .text-section h1 {
    font-size: 3rem;
    letter-spacing: -0.109375rem;
  }
}

@media (max-width: 736px) {
  body {
    padding: 1rem;
  }

  .text-section {
    padding: 2.5rem;
  }

  .image-section {
    min-height: 300px;
  }

  .text-section h1 {
    font-size: 2.5rem;
  }

  .text-section p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .image-section {
    min-height: 250px;
  }

  .text-section {
    padding: 2rem;
  }

  .text-section h1 {
    font-size: 2rem;
  }

  .social-icons {
    gap: 0.75rem;
  }

  .social-icons li a {
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media (max-width: 360px) {
  .text-section {
    padding: 1.875rem;
  }

  .image-section {
    min-height: 200px;
  }

  .text-section h1 {
    font-size: 1.75rem;
  }
}
