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

body {
  font-family: Geist, Arial, sans-serifsans-serif;
  background: radial-gradient(
      ellipse 1200px 800px at 50% 0%,
      rgba(255, 165, 0, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #3d3520 100%);
  background-size: 100% 100%, 20px 20px, 100% 100%;
  color: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.main-section {
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.main-section .container {
  padding: 0 40px;
}

/* Main Content Wrapper */
.main-content-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.left-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 100%;
}

.right-content {
  position: sticky;
  top: 80px;
  width: 100%;
  height: 100%;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1.2;
  max-width: 100%;
}

.hero-content p {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 35px;
  max-width: 100%;
}

.button-group {
  display: flex;
  gap: 20px;
}

.btn {
  padding: 0.5rem 1.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background-color: #f7b819;
  color: #1a1a1a;
}

.btn-primary:hover {
  background-color: #fdc647;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 165, 0, 0.3);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 1);
}

/* Profile Card */
.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  background: url("images/prof_pic.jpg") center/cover no-repeat;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.profile-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
  z-index: 1;
}

.profile-card:hover::before {
  background: rgba(0, 0, 0, 0.7);
}

.profile-card .profile-content {
  position: relative;
  z-index: 2;
  opacity: 0;
  transition: all 0.3s ease;
}

.profile-card:hover .profile-content {
  opacity: 1;
}

.profile-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile-info h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #ffa500;
  font-weight: 600;
}

.profile-info p {
  font-size: 1rem;
  line-height: 1.5;
  color: #e0e0e0;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  width: 100%;
}

.service-card {
  background: #3a3a3a;
  padding: 35px;
  border-radius: 16px;
  /* border: 1px solid rgba(255, 255, 255, 0.25); */
  width: 100%;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 500;
}

.service-card p {
  color: #b0b0b0;
  font-size: 1.05rem;
  /* line-height: 1.7; */
}

/* Questions Section */
.questions-section {
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.questions-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1400px;
  justify-items: start;
}

.questions-left h2 {
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 40px;
  color: #ffffff;
}

.questions-intro {
  margin-bottom: 0;
}

.questions-intro p {
  color: #cccccc;
  font-size: 1.25rem;
  line-height: 1.6;
}

.questions-intro a {
  color: #ffa500;
  text-decoration: none;
}

.questions-intro a:hover {
  text-decoration: underline;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 75ch;
}

.faq-item h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: #ffffff;
}

.faq-item p {
  color: #b0b0b0;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-item a {
  color: #ffa500;
  text-decoration: none;
}

.faq-item a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .main-content-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .right-content {
    position: static;
    order: 1;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .profile-card {
    width: 100%;
    margin: 0;
    background: #3a3a3a !important;
    background-image: none !important;
    padding: 35px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    position: static;
    overflow: visible;
    cursor: default;
    height: auto !important;
  }

  .profile-card::before {
    display: none;
  }

  .profile-card::after {
    content: "";
    width: 120px;
    height: 120px;
    background: url("images/prof_pic.jpg") center/cover no-repeat;
    border-radius: 50%;
    border: 3px solid #ffa500;
    order: -1;
  }

  .profile-card .profile-content {
    opacity: 1;
    position: static;
    z-index: auto;
  }

  .profile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile-info h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
  }

  .profile-info p {
    font-size: 1rem;
    line-height: 1.5;
    color: #cccccc;
  }

  .button-group {
    flex-direction: row;
    gap: 20px;
    justify-content: flex-start;
  }

  .btn {
    padding: 0.5rem 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .questions-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) and (min-width: 769px) {
  .button-group {
    flex-direction: row;
    gap: 20px;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .main-section .container {
    padding: 0 20px;
  }

  .main-section {
    padding: 40px 0;
  }

  .questions-section {
    padding: 40px 0;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .button-group {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .questions-section h2 {
    font-size: 2.5rem;
  }

  .questions-section .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .right-content {
    order: 1;
  }

  .profile-card {
    height: auto !important;
    max-width: 400px;
    margin: 0 auto;
    background: none !important;
    background-image: none !important;
    padding: 20px 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    position: static;
    overflow: visible;
    cursor: default;
  }

  .profile-card::before {
    display: none;
  }

  .profile-card::after {
    content: "";
    width: 120px;
    height: 120px;
    background: url("images/prof_pic.jpg") center/cover no-repeat;
    border-radius: 50%;
    border: 3px solid #ffa500;
    order: -1;
  }

  .profile-card .profile-content {
    opacity: 1;
    position: static;
    z-index: auto;
  }

  .profile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile-info h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
  }

  .profile-info p {
    font-size: 1rem;
    line-height: 1.5;
    color: #cccccc;
  }
}
