.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.container-venture {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(252, 180, 45, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(252, 180, 45, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 80px;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fcb42d 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ccc;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #fcb42d 0%, #f0a500 100%);
  color: #000;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(252, 180, 45, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(252, 180, 45, 0.5);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.tech-circle {
  width: 300px;
  height: 300px;
  border: 3px solid #fcb42d;
  border-radius: 50%;
  position: relative;
  animation: rotate 20s linear infinite;
}

.tech-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border: 2px solid rgba(252, 180, 45, 0.5);
  border-radius: 50%;
  animation: rotate 15s linear infinite reverse;
}

.tech-circle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #fcb42d 0%, #f0a500 100%);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(252, 180, 45, 0.5);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Strategy Section */
.strategy-section {
  background-color: #0a0a1a;
  color: #fff;
  padding: 4rem 1.5rem;
  text-align: center;
}

.strategy-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #fcb42d;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.strategy-item {
  /* position: relative; */
  padding-left: 4rem;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.strategy-item .number {
  /* position: absolute;
  top: 0;
  left: 0; */
  font-size: 4rem;
  color: rgba(0, 255, 180, 0.3);
  font-weight: 600;
  z-index: 0;
}

.strategy-item p {
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.strategy-item .highlight {
  color: #00e39f;
  font-weight: 600;
}

/* Investment Focus */
.investment-focus {
  padding: 6rem 0;
  background: #000;
}

.investment-focus h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #fcb42d;
}

.focus-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.focus-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(252, 180, 45, 0.1) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  border-radius: 15px;
  border: 1px solid rgba(252, 180, 45, 0.2);
  transition: all 0.3s ease;
}

.focus-item:hover {
  transform: translateY(-5px);
  border-color: #fcb42d;
}

.focus-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fcb42d 0%, #f0a500 100%);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000;
}

.focus-item h3 {
  color: #fcb42d;
  margin-bottom: 1rem;
}

.focus-item p {
  color: #ccc;
  line-height: 1.6;
}

/* Footer */
footer {
  background: #111;
  padding: 3rem 0;
  border-top: 2px solid #fcb42d;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  color: #fcb42d;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: #ccc;
  text-decoration: none;
  line-height: 1.6;
}

.footer-section a:hover {
  color: #fcb42d;
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .tech-circle {
    width: 200px;
    height: 200px;
  }

  .tech-circle::before {
    width: 150px;
    height: 150px;
  }

  .tech-circle::after {
    width: 80px;
    height: 80px;
  }

  .strategy-grid,
  .focus-areas {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .strategy h2,
  .investment-focus h2 {
    font-size: 2rem;
  }
}

/* category */
.categories-section {
  margin-bottom: 4rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.category-item {
  text-align: center;
  padding: 1.5rem;
  background-color: #000;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-item:hover {
  transform: translateY(-5px);
  background: rgba(252, 180, 45, 0.1);
  border-color: #fcb42d;
  box-shadow: 0 10px 30px rgba(252, 180, 45, 0.2);
}

.category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background: linear-gradient(
    135deg,
    rgba(252, 180, 45, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fcb42d;
  border: 2px solid rgba(252, 180, 45, 0.3);
  transition: all 0.3s ease;
}

.category-item:hover .category-icon {
  background: linear-gradient(135deg, #fcb42d 0%, #f0a500 100%);
  color: #000;
  transform: scale(1.1);
}

.category-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  background: white;
  padding: 0.5rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.category-item:hover .category-title {
  background: #fcb42d;
  color: #000;
}

/* Overview Section */
.overview-section {
  background: #000;
  /* border: 1px solid rgba(252, 180, 45, 0.3); */
  /* border-radius: 20px; */
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.overview-left h2 {
  font-size: 2rem;
  color: #fcb42d;
  margin-bottom: 2rem;
  font-weight: 700;
}

.overview-details {
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(252, 180, 45, 0.2);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(252, 180, 45, 0.1);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 600;
  color: #ccc;
  min-width: 140px;
  flex-shrink: 0;
}

.detail-value {
  color: white;
  text-align: right;
  flex: 1;
}

.detail-value.highlight {
  color: #fcb42d;
  font-weight: 600;
}

.analysts-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.analyst-name {
  color: white;
  font-size: 0.95rem;
}

.overview-right h2 {
  font-size: 2rem;
  color: #fcb42d;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.description-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e0e0e0;
  background: rgba(0, 0, 0, 0.2);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid #fcb42d;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
  }

  .overview-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .category-item {
    padding: 1rem;
  }

  .category-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .category-title {
    font-size: 0.9rem;
  }

  .overview-section {
    padding: 1.5rem;
  }

  .overview-details {
    padding: 1.5rem;
  }

  .detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .detail-label {
    min-width: auto;
  }

  .detail-value {
    text-align: left;
  }

  .description-text {
    font-size: 1rem;
    padding: 1.5rem;
  }

  .overview-left h2,
  .overview-right h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .category-item {
    padding: 1.5rem;
  }

  .overview-section {
    padding: 1rem;
  }

  .overview-details {
    padding: 1rem;
  }

  .description-text {
    padding: 1rem;
  }
}

/* Animation */
.category-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.category-item:nth-child(1) {
  animation-delay: 0.1s;
}
.category-item:nth-child(2) {
  animation-delay: 0.2s;
}
.category-item:nth-child(3) {
  animation-delay: 0.3s;
}
.category-item:nth-child(4) {
  animation-delay: 0.4s;
}
.category-item:nth-child(5) {
  animation-delay: 0.5s;
}
.category-item:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.overview-section {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.7s forwards;
}

.availability-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(252, 180, 45, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  margin-bottom: 2rem;
}

.availability-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fcb42d;
  margin-bottom: 2rem;
}

/* Availability Table */
.availability-table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: #f8f9fa;
  padding: 1.5rem;
  border-bottom: 2px solid #e9ecef;
}

.table-header-cell {
  font-weight: 700;
  font-size: 1.1rem;
  color: #333;
  text-align: center;
}

.table-header-cell:first-child {
  text-align: left;
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 1.5rem;
  border-bottom: 1px solid #e9ecef;
  align-items: center;
  transition: background-color 0.3s ease;
}

.table-row:hover {
  background-color: rgba(252, 180, 45, 0.05);
}

.table-cell {
  color: #333;
  font-size: 1rem;
  text-align: center;
}

.table-cell:first-child {
  text-align: left;
  font-weight: 600;
  color: #2c3e50;
}

.check-mark {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.8rem;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ccc;
  border: 1px solid rgba(252, 180, 45, 0.3);
}

.btn-secondary:hover {
  background: rgba(252, 180, 45, 0.1);
  color: #fcb42d;
  border-color: #fcb42d;
}

.btn-primary {
  background: linear-gradient(135deg, #fcb42d 0%, #f0a500 100%);
  color: #000;
  box-shadow: 0 4px 15px rgba(252, 180, 45, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(252, 180, 45, 0.5);
}

.btn-arrow {
  font-size: 0.8rem;
  margin-left: 0.3rem;
}

/* Disclaimer */
.disclaimer {
  /* background: rgba(0, 0, 0, 0.2); */
  background-color: #000;
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid rgba(252, 180, 45, 0.5);
  font-size: 0.85rem;
  line-height: 1.6;
  color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .availability-section {
    padding: 1.5rem;
  }

  .availability-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .table-header,
  .table-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: left;
  }

  .table-header-cell,
  .table-cell {
    text-align: left;
    padding: 0.5rem 0;
  }

  .table-header {
    display: none;
  }

  .table-row {
    display: block;
    padding: 1rem;
    background: #f8f9fa;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    border: none;
  }

  .table-cell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
  }

  .table-cell:last-child {
    border-bottom: none;
  }

  .table-cell::before {
    content: attr(data-label);
    font-weight: 600;
    color: #666;
  }

  .action-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
    text-align: center;
  }

  .disclaimer {
    font-size: 0.8rem;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .availability-section {
    padding: 1rem;
  }

  .availability-title {
    font-size: 1.5rem;
  }

  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}

/* team styles */

.team-section {
  background-color: #f5f6fa;
  padding: 4rem 1.5rem;
  text-align: center;
}

.team-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #0a0a1a;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100%;
  display: block;
}

.member-info {
  padding: 1rem;
}

.member-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a0a1a;
  margin-bottom: 0.5rem;
}

.member-info p {
  font-size: 0.95rem;
  color: #6c6c7d;
  line-height: 1.4;
}

/* related research styles */

.research-section {
  background-color: #f5f6fa;
  padding: 4rem 1.5rem;
  color: #0a0a1a;
}

.research-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.research-card {
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.research-card:hover {
  transform: translateY(-5px);
}

.research-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 160px;
}

.research-content {
  padding: 1.2rem;
}

.research-content .category {
  font-size: 0.85rem;
  color: #6c6c7d;
  display: block;
  margin-bottom: 0.6rem;
}

.research-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.research-content p {
  font-size: 0.9rem;
  color: #222;
}

.research-content .tags {
  color: #0055aa;
}

/* profile style */
#profile-section {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

#profile-image {
  flex-shrink: 0;
  width: 400px;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
}

#profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#profile-content {
  flex: 1;
  padding-top: 2rem;
}

#profile-header {
  margin-bottom: 2rem;
}

#profile-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

#profile-titles {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

#profile-title {
  font-size: 1.1rem;
  color: #34495e;
  font-weight: 500;
}

#profile-description {
  font-size: 1.1rem;
  color: #2c3e50;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

#profile-quote {
  font-size: 1.4rem;
  color: #8b7cf6;
  font-style: italic;
  line-height: 1.6;
  font-weight: 400;
  position: relative;
}

#profile-quote::before {
  content: '"';
  font-size: 1.8rem;
  position: absolute;
  left: -0.5rem;
  top: -0.2rem;
}

#profile-quote::after {
  content: '"';
  font-size: 1.8rem;
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
  #profile-section {
    gap: 5rem;
    padding: 4rem 3rem;
  }

  #profile-image {
    width: 450px;
    height: 550px;
  }

  #profile-name {
    font-size: 3rem;
  }

  #profile-quote {
    font-size: 1.5rem;
  }
}

/* Desktop (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  #profile-section {
    gap: 3.5rem;
    padding: 3rem 2rem;
  }

  #profile-image {
    width: 380px;
    height: 480px;
  }

  #profile-name {
    font-size: 2.3rem;
  }

  #profile-quote {
    font-size: 1.3rem;
  }
}

/* Tablet Landscape (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  #profile-section {
    gap: 3rem;
    padding: 2.5rem 1.5rem;
  }

  #profile-image {
    width: 320px;
    height: 400px;
  }

  #profile-name {
    font-size: 2.2rem;
  }

  #profile-description {
    font-size: 1rem;
  }

  #profile-quote {
    font-size: 1.25rem;
  }
}

/* Tablet Portrait (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  #profile-section {
    flex-direction: column;
    gap: 2.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
  }

  #profile-image {
    width: 100%;
    max-width: 300px;
    height: 350px;
    margin: 0 auto;
  }

  #profile-content {
    padding-top: 0;
  }

  #profile-name {
    font-size: 2rem;
  }

  #profile-description {
    font-size: 1rem;
    text-align: left;
  }

  #profile-quote {
    font-size: 1.2rem;
    text-align: left;
  }
}

/* Mobile Large (480px to 575px) */
@media (min-width: 480px) and (max-width: 575px) {
  #profile-section {
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem 1rem;
    text-align: center;
  }

  #profile-image {
    width: 100%;
    max-width: 280px;
    height: 320px;
    margin: 0 auto;
  }

  #profile-content {
    padding-top: 0;
  }

  #profile-name {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  #profile-title {
    font-size: 1rem;
  }

  #profile-description {
    font-size: 0.95rem;
    text-align: left;
    margin-bottom: 2rem;
  }

  #profile-quote {
    font-size: 1.1rem;
    text-align: left;
  }
}

/* Mobile Small (320px to 479px) */
@media (max-width: 479px) {
  #profile-section {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0.75rem;
  }

  #profile-image {
    width: 100%;
    max-width: 250px;
    height: 280px;
    margin: 0 auto;
  }

  #profile-content {
    padding-top: 0;
  }

  #profile-name {
    font-size: 1.6rem;
    margin-bottom: 0.7rem;
    line-height: 1.2;
  }

  #profile-title {
    font-size: 0.95rem;
  }

  #profile-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  #profile-quote {
    font-size: 1rem;
    line-height: 1.5;
  }

  #profile-quote::before {
    font-size: 1.4rem;
    left: -0.3rem;
  }

  #profile-quote::after {
    font-size: 1.4rem;
  }
}

/* Extra Small Mobile (below 320px) */
@media (max-width: 319px) {
  #profile-section {
    padding: 0.75rem 0.5rem;
    gap: 1rem;
  }

  #profile-image {
    max-width: 220px;
    height: 250px;
  }

  #profile-name {
    font-size: 1.4rem;
  }

  #profile-title {
    font-size: 0.9rem;
  }

  #profile-description {
    font-size: 0.85rem;
  }

  #profile-quote {
    font-size: 0.95rem;
  }
}
