/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  background: none;
  color: #2d1a05;
  line-height: 1.7;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" viewBox="0 0 1600 900" fill="none" xmlns="http://www.w3.org/2000/svg"><defs><radialGradient id="g1" cx="60%" cy="30%" r="1.2"><stop offset="0%25" stop-color="%23f5f5f5"/><stop offset="100%25" stop-color="%23ece7e1"/></radialGradient><radialGradient id="g2" cx="20%" cy="80%" r="1.1"><stop offset="0%25" stop-color="%23e9dac6"/><stop offset="100%25" stop-color="%23d6c3b0"/></radialGradient></defs><rect width="1600" height="900" fill="url(%23g1)"/><ellipse cx="1200" cy="200" rx="320" ry="180" fill="%23e9dac6" fill-opacity="0.13"/><ellipse cx="400" cy="800" rx="340" ry="120" fill="url(%23g2)" fill-opacity="0.18"/></svg>');
  background-size: cover;
}
.section, .mission-card, .founder-profile, .product-row {
  background: #fff !important;
}

header {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(255,183,71,0.13);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  min-height: 48px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  margin-right: 1.2rem;
}

.logo {
  color: #ff7e5f;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  color: #2d1a05;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.3rem 0.7rem;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  background: rgba(255,255,255,0.2);
}

.nav-links a:hover, .nav-links a.active {
  background: rgba(255,183,71,0.18);
  color: #ff7e5f;
  box-shadow: 0 2px 8px rgba(255,179,71,0.08);
}

.nav-logo {
  height: 38px;
  width: auto;
  margin-right: 0;
  vertical-align: middle;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(60,40,20,0.07);
  background: #fff;
  z-index: 2;
}

.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2.5rem 1.5rem;
  background: rgba(255,255,255,0.92);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(26,38,52,0.04);
  margin-top: 2.2rem;
  position: relative;
}

.section:not(:first-child)::before {
  content: '';
  display: block;
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, #ffb347 0%, #ff7e5f 100%);
  border-radius: 2px;
}

.section h1, .section h2 {
  color: #ff7e5f;
  margin-bottom: 1.1rem;
  font-weight: 700;
}

.section h1 {
  font-size: 2.1rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
}

.section h2 {
  font-size: 1.4rem;
}

.profile {
  margin-top: 2rem;
  background: rgba(255,183,71,0.10);
  padding: 1.2rem 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(255,179,71,0.06);
}

.profile h3 {
  margin-bottom: 0.5rem;
  color: #ff7e5f;
  font-size: 1.1rem;
}

.profile ul {
  margin-left: 1.1rem;
  font-size: 1rem;
}

footer {
  text-align: center;
  padding: 2rem 0 1rem 0;
  color: #ff7e5f;
  font-size: 1rem;
  background: none;
  margin-top: 2rem;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.footer-logo {
  height: 32px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(60,40,20,0.07);
  background: #fff;
  margin-right: 0.5rem;
}

@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0.7rem;
  }
  .nav-links {
    gap: 0.7rem;
    flex-wrap: wrap;
  }
  .section {
    padding: 1.5rem 0.5rem;
    margin-top: 1rem;
  }
}

@media (max-width: 600px) {
  .logo {
    font-size: 1rem;
  }
  .section h1 {
    font-size: 1.3rem;
  }
  .section h2 {
    font-size: 1.1rem;
  }
  .section {
    padding: 0.7rem 0.2rem;
  }
  .profile {
    padding: 0.7rem 0.2rem;
  }
  .hero-title {
    font-size: 1.2rem;
    padding: 0.4rem 0.7rem;
  }
}

html {
  scroll-behavior: smooth;
}

.hero {
  width: 100vw;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-image: url('https://plus.unsplash.com/premium_photo-1679917152411-353fd633e218?q=80&w=2232&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); */
  background-image: url("assets/images/bgSolarWind2.png");
  background-size: cover;
  background-position: center center;
  position: relative;
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .hero {
    min-height: 60vh;
    height: 60vh;
  }
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.45) 0%, rgba(255,183,71,0.18) 60%, rgba(255,126,95,0.13) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-title-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255,255,255,0.7);
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(255,183,71,0.10);
  padding: 1.1rem 2.2rem 1.2rem 2.2rem;
  margin-bottom: 0.5rem;
  gap: 0.3rem;
  position: relative;
}

.hero-title-row {
  display: flex;
  align-items: flex-end;
  gap: 1.1rem;
}

.hero-logo {
  height: 48px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(60,40,20,0.07);
  background: #fff;
  flex-shrink: 0;
}

.hero-title {
  color: #2d1a05;
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 8px rgba(255,255,255,0.18), 0 6px 24px rgba(255,183,71,0.10);
  z-index: 2;
  text-align: left;
  margin: 0;
  line-height: 1.1;
}

.hero-subtitle {
  color: #392925;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 4px rgba(255,255,255,0.18);
  z-index: 2;
  text-align: right;
  background: none;
  border-radius: 0;
  padding: 0;
  margin: 0.2rem 0 0 auto;
  opacity: 0.85;
}

@media (max-width: 700px) {
  .hero-title-block {
    padding: 0.7rem 0.7rem 1.1rem 0.7rem;
    gap: 0.2rem;
  }
  .hero-title-row {
    gap: 0.5rem;
  }
  .hero-logo {
    height: 28px;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-subtitle {
    font-size: 0.8rem;
  }
}

/* HERO SECTION ENHANCEMENTS */
.hero-title-row {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0.7rem !important;
}
.hero-title {
  font-size: 4.2rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #38160d;
  text-shadow: 0 4px 24px rgba(255,183,71,0.13), 0 8px 32px rgba(60,40,20,0.08);
  margin-bottom: 0.1rem;
  line-height: 1.05;
  padding-bottom: 0.1em;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  text-fill-color: unset;
}
.hero-title-row {
  gap: 0.15rem !important;
}
.hero-subtitle {
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 500;
  color: #392925;
  opacity: 0.92;
  margin-top: 0;
  margin-bottom: 0.1rem;
  letter-spacing: 0.5px;
  text-align: left;
  text-shadow: 0 2px 8px rgba(255,255,255,0.18);
}
.hero-title-block {
  padding: 2.2rem 3.5rem 2.5rem 3.5rem;
  align-items: flex-start;
  min-width: 340px;
  max-width: 90vw;
}
@media (max-width: 700px) {
  .hero-title {
    font-size: 2.2rem;
    padding-bottom: 0.1em;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .hero-title-block {
    padding: 1.1rem 0.7rem 1.2rem 0.7rem;
    min-width: unset;
  }
}

.product-group {
  width: 100%;
  margin-bottom: 0;
}
.product-group h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  color: #ff7e5f;
  font-size: 1.15rem;
  font-weight: 700;
}
.product-group ul {
  margin-left: 1.2rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: #392925;
}
.product-group ul li {
  margin-bottom: 0.3rem;
  line-height: 1.6;
}

.product-img {
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
  margin: 0 auto 1rem auto;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(60,40,20,0.08);
  object-fit: cover;
  background: #f8fafc;
}

.product-row {
  display: flex;
  align-items: stretch;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  background: rgba(255,255,255,0.92);
  border: 1.5px solid #ffe0b2;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(255,183,71,0.08);
  transition: box-shadow 0.25s, transform 0.22s, border-color 0.22s;
  position: relative;
  overflow: hidden;
}
.product-row:hover {
  box-shadow: 0 8px 32px rgba(255,183,71,0.18), 0 2px 16px rgba(60,40,20,0.08);
  transform: translateY(-6px) scale(1.012);
  border-color: #ffb347;
  z-index: 2;
}
.product-row:not(:last-child) {
  margin-bottom: 3.2rem;
}
.product-row-reverse {
  flex-direction: row-reverse;
}
.product-img-col {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-text-col {
  flex: 2 1 400px;
  display: flex;
  align-items: center;
}

@media (max-width: 900px) {
  .product-row, .product-row-reverse {
    flex-direction: column !important;
    gap: 1.2rem;
    margin-bottom: 2rem;
  }
  .product-img-col, .product-text-col {
    flex: unset;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
  }
} 

.customers-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.styled-table {
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 1em;
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  min-width: 340px;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 4px 24px rgba(60,40,20,0.08);
  border-radius: 12px 12px 10px 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.98);
  transition: box-shadow 0.2s;
}
.styled-table thead tr {
  background: linear-gradient(90deg, #ff7e5f 0%, #ffb347 100%);
  color: #fff;
  text-align: left;
  font-size: 1.08em;
}
.styled-table th,
.styled-table td {
  padding: 14px 18px;
  border: none;
}
.styled-table tbody tr {
  border-bottom: 1px solid #f3e6d6;
  transition: background 0.18s, color 0.18s, font-size 0.18s;
}
.styled-table tbody tr:nth-of-type(even) {
  background-color: #f8fafc;
}
.styled-table tbody tr:last-of-type {
  border-bottom: 2px solid #ffb347;
}
.styled-table tbody tr.active-row {
  font-weight: bold;
  color: #ff7e5f;
}
.styled-table tbody tr:hover {
  background: linear-gradient(90deg, #ffecd2 0%, #fcb69f 100%);
  color: #392925;
  font-size: 1.08em;
  box-shadow: 0 2px 12px rgba(255,183,71,0.10);
  cursor: pointer;
}
@media (max-width: 600px) {
  .styled-table th, .styled-table td {
    padding: 10px 8px;
    font-size: 0.95em;
  }
  .styled-table {
    font-size: 0.95em;
    min-width: 220px;
  }
} 

.glossary-cards {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}
.glossary-card {
  background: rgba(255,255,255,0.97);
  border: 1.5px solid #ffe0b2;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(255,183,71,0.08);
  padding: 2rem 2.2rem 1.5rem 2.2rem;
  min-width: 260px;
  max-width: 360px;
  flex: 1 1 260px;
  transition: box-shadow 0.22s, transform 0.18s, border-color 0.18s;
  position: relative;
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.glossary-card:hover {
  box-shadow: 0 8px 32px rgba(255,183,71,0.18), 0 2px 16px rgba(60,40,20,0.08);
  transform: translateY(-6px) scale(1.012);
  border-color: #ffb347;
  z-index: 2;
}
.glossary-card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  color: #ff7e5f;
  font-size: 1.15rem;
  font-weight: 700;
}
.glossary-patent {
  color: #392925;
  font-size: 1.08em;
  background: #fff8e1;
  border-radius: 6px;
  padding: 0.2em 0.6em;
  margin-left: 0.2em;
}
.glossary-papers {
  list-style: disc inside;
  padding-left: 0.5em;
  margin: 0.5em 0 0 0;
}
.glossary-papers li {
  margin-bottom: 0.5em;
}
.glossary-papers a {
  color: #ff7e5f;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.18s;
}
.glossary-papers a:hover {
  color: #392925;
  text-decoration: underline wavy;
}
@media (max-width: 700px) {
  .glossary-cards {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .glossary-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 1.2rem 1rem 1rem 1rem;
  }
} 

.founder-profile {
  display: flex;
  align-items: flex-start;
  gap: 2.8rem;
  margin: 2.2rem 0 1.5rem 0;
  background: rgba(255,255,255,0.97);
  border: 1.5px solid #ffe0b2;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(255,183,71,0.08);
  padding: 2.5rem 2.8rem 2rem 2.8rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.founder-photo {
  width: 280px;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(60,40,20,0.13);
  background: #f8fafc;
  border: 3px solid #ffb347;
  margin-bottom: 0.5rem;
}
.founder-details {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder-details h3 {
  margin: 0 0 0.7rem 0;
  color: #ff7e5f;
  font-size: 1.25rem;
  font-weight: 700;
}
.founder-details ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 1.05rem;
  color: #392925;
}
.founder-details ul ul {
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}
.contact-btn {
  display: inline-block;
  margin: 1.2rem 0 1.5rem 0;
  padding: 0.85em 2.2em;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #b57768 0%, #ffb347 100%);
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(255,183,71,0.10);
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.18s, transform 0.15s;
  cursor: pointer;
  letter-spacing: 0.5px;
}
.contact-btn:hover, .contact-btn:focus {
  background: linear-gradient(90deg, #ffb347 0%, #ff7e5f 100%);
  box-shadow: 0 4px 24px rgba(255,183,71,0.18);
  transform: translateY(-2px) scale(1.03);
  color: #fff;
  outline: none;
}
@media (max-width: 700px) {
  .founder-profile {
    flex-direction: column;
    align-items: center;
    padding: 1.2rem 1rem 1rem 1rem;
    gap: 1.2rem;
  }
  .founder-photo {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    border-width: 2px;
  }
} 

.mission-card {
  background: rgba(255,255,255,0.98);
  border: 1.5px solid #ffe0b2;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(255,183,71,0.10);
  padding: 2.5rem 2.8rem 2.2rem 2.8rem;
  max-width: 850px;
  margin: 0 auto 2.5rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: box-shadow 0.22s, transform 0.18s, border-color 0.18s;
  animation: fadeInUp 0.9s cubic-bezier(.23,1.01,.32,1) 0.1s both;
}
.mission-card:hover {
  box-shadow: 0 8px 32px rgba(255,183,71,0.18), 0 2px 16px rgba(60,40,20,0.08);
  border-color: #ffb347;
  transform: translateY(-4px) scale(1.012);
}
.mission-icon {
  margin-bottom: 0.7rem;
  animation: popIn 0.7s cubic-bezier(.23,1.01,.32,1) 0.1s both;
}
.mission-title {
  color: #ff7e5f;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 1.1rem 0;
  letter-spacing: 0.5px;
  text-align: center;
}
.mission-highlight {
  font-size: 1.18rem;
  color: #392925;
  background: #fff8e1;
  border-left: 5px solid #ffb347;
  border-radius: 8px;
  padding: 1.1rem 1.5rem;
  margin: 0;
  font-style: italic;
  box-shadow: 0 1px 8px rgba(255,183,71,0.06);
  text-align: left;
  line-height: 1.7;
  transition: background 0.18s;
}
.mission-card:hover .mission-highlight {
  background: #fff3d1;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}
@media (max-width: 700px) {
  .mission-card {
    padding: 1.2rem 1rem 1rem 1rem;
    max-width: 100%;
  }
  .mission-title {
    font-size: 1.2rem;
  }
  .mission-highlight {
    font-size: 1rem;
    padding: 0.7rem 0.7rem;
  }
} 

.contact-map-wrapper {
  width: 100%;
  max-width: 600px;
  margin: 2rem auto 0 auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(60,40,20,0.08);
  border: 1.5px solid #ece7e1;
}
.contact-map {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
  background: #f5f5f5;
}
@media (max-width: 700px) {
  .contact-map-wrapper {
    max-width: 100%;
  }
  .contact-map {
    height: 200px;
  }
} 

.certificate-img-thumb {
  width: 120px;
  height: 80px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  filter: blur(2px) brightness(0.85);
  transition: filter 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(60,40,20,0.10);
  cursor: pointer;
}
.certificate-thumb:hover .certificate-img-thumb {
  filter: blur(0) brightness(1);
  box-shadow: 0 4px 24px #ffb34744;
}
.certificate-label {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #38160d;
  font-weight: 600;
  text-align: center;
}
.certificate-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44, 32, 18, 0.85);
  overflow: auto;
  flex-direction: column;
  animation: fadeInUp 0.2s;
}
.certificate-modal-content {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 8px 32px #ffb34755;
  margin-bottom: 1.2rem;
  background: #fff;
}
.certificate-modal-close {
  color: #fff;
  position: absolute;
  top: 2.5vh;
  right: 4vw;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  text-shadow: 0 2px 8px #2d1a05;
  transition: color 0.2s;
}
.certificate-modal-close:hover {
  color: #ffb347;
}
#certificate-modal-caption {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px #2d1a05;
}
@media (max-width: 700px) {
  .certificate-img-thumb {
    width: 80px;
    height: 54px;
  }
  .certificate-modal-content {
    max-width: 98vw;
    max-height: 60vh;
  }
  .certificate-modal-close {
    font-size: 2rem;
    top: 1.5vh;
    right: 2vw;
  }
  #certificate-modal-caption {
    font-size: 1rem;
  }
} 

.network-section {
  background: rgba(255,255,255,0.98) !important;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(255,183,71,0.10);
  padding: 2.5rem 2.2rem 2.2rem 2.2rem;
  margin-bottom: 2.5rem;
}
.network-intro {
  font-size: 1.18rem;
  color: #392925;
  background: #fff8e1;
  border-left: 5px solid #ffb347;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-style: italic;
  box-shadow: 0 1px 8px rgba(255,183,71,0.06);
  text-align: left;
  line-height: 1.7;
}
.network-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.network-card {
  background: #fff;
  border: 1.5px solid #ffe0b2;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(255,183,71,0.08);
  padding: 1.2rem 1.5rem;
  min-width: 260px;
  max-width: 370px;
  flex: 1 1 260px;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  transition: box-shadow 0.22s, transform 0.18s, border-color 0.18s;
  margin-bottom: 0.5rem;
  position: relative;
}
.network-card:hover {
  box-shadow: 0 8px 32px rgba(255,183,71,0.18), 0 2px 16px rgba(60,40,20,0.08);
  transform: translateY(-4px) scale(1.012);
  border-color: #ffb347;
  z-index: 2;
}
.network-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.network-text {
  font-size: 1.08rem;
  color: #392925;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .network-cards {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .network-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 1.1rem 1rem;
  }
  .network-section {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .network-intro {
    font-size: 1rem;
    padding: 0.7rem 0.7rem;
  }
} 

.founder-card {
  display: flex;
  align-items: flex-start;
  gap: 2.8rem;
  background: #fff;
  border: 1.5px solid #ffe0b2;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(255,183,71,0.10);
  padding: 2.5rem 2.8rem 2rem 2.8rem;
  max-width: 850px;
  margin: 2.2rem auto 1.5rem auto;
  position: relative;
  transition: box-shadow 0.22s, transform 0.18s, border-color 0.18s;
}
.founder-card:hover {
  box-shadow: 0 8px 32px rgba(255,183,71,0.18), 0 2px 16px rgba(60,40,20,0.08);
  border-color: #ffb347;
  transform: translateY(-4px) scale(1.012);
  z-index: 2;
}
.founder-photo-col {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-photo {
  width: 280px;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(60,40,20,0.13);
  background: #f8fafc;
  border: 3px solid #ffb347;
  margin-bottom: 0.5rem;
}
.founder-details-col {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder-header {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 0.7rem;
}
.founder-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}
.founder-header h3 {
  margin: 0;
  color: #ff7e5f;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.founder-bio-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 1.08rem;
  color: #392925;
  line-height: 1.7;
}
.founder-bio-list > li {
  margin-bottom: 0.5rem;
}
.founder-expertise-list {
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  padding-left: 1.2rem;
  font-size: 1.02rem;
  color: #38160d;
  list-style: disc inside;
}
.founder-expertise-list li {
  margin-bottom: 0.2rem;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .founder-card {
    flex-direction: column;
    align-items: center;
    padding: 1.2rem 1rem 1rem 1rem;
    gap: 1.2rem;
  }
  .founder-photo {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    border-width: 2px;
  }
  .founder-header h3 {
    font-size: 1.1rem;
  }
  .founder-bio-list {
    font-size: 0.98rem;
  }
} 

.contact-info-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2.2rem;
}
.contact-info-card {
  background: #fff;
  border: 1.5px solid #ffe0b2;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(255,183,71,0.08);
  padding: 1.1rem 1.5rem;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  transition: box-shadow 0.22s, transform 0.18s, border-color 0.18s;
  margin-bottom: 0.5rem;
  position: relative;
}
.contact-info-card:hover {
  box-shadow: 0 8px 32px rgba(255,183,71,0.18), 0 2px 16px rgba(60,40,20,0.08);
  border-color: #ffb347;
  transform: translateY(-4px) scale(1.012);
  z-index: 2;
}
.contact-info-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.contact-info-link {
  font-size: 1.08rem;
  color: #392925;
  line-height: 1.6;
  text-decoration: none;
  font-weight: 600;
  word-break: break-word;
  transition: color 0.18s;
}
.contact-info-link:hover {
  color: #ff7e5f;
  text-decoration: underline;
}
.contact-copy-btn {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  margin-left: 0.5rem;
  padding: 0.2rem;
  border-radius: 6px;
  transition: background 0.18s, box-shadow 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-copy-btn:hover, .contact-copy-btn:focus {
  background: #fff8e1;
  box-shadow: 0 2px 8px #ffb34744;
}
.contact-copy-btn svg {
  display: block;
}
.contact-copy-tooltip {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0.3rem);
  background: #ffb347;
  color: #fff;
  font-size: 0.95rem;
  padding: 0.18em 0.8em;
  border-radius: 6px;
  box-shadow: 0 2px 8px #ffb34744;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  z-index: 10;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.contact-info-card.copied .contact-copy-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0.1rem) scale(1.08);
  background: #ff7e5f;
}
.contact-copy-btn:focus + .contact-copy-tooltip,
.contact-copy-btn:hover + .contact-copy-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0.1rem) scale(1.08);
}
@media (max-width: 900px) {
  .contact-info-cards {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .contact-info-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 1.1rem 1rem;
  }
  .contact-info-card {
    justify-content: flex-start;
  }
} 