      * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      }
      body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      line-height: 1.6;
      color: #2c2c2c;
      background-color: #f8f9fa;
      }
      .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      }
      header {
      background: linear-gradient(135deg, #9F9ABF 0%, #C0BBD7 100%);
      padding: 20px 0;
      box-shadow: 0 2px 10px rgba(159, 154, 191, 0.15);
      }
      .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 70px;
      gap: 30px;
      }
      .logo-container {
      flex-shrink: 0;
      z-index: 10;
      position: relative;
      }
      .logo {
      height: 45px;
      width: auto;
      display: block;
      }
      nav {
      flex-grow: 1;
      display: flex;
      justify-content: flex-end;
      z-index: 5;
      }
      .nav-list {
      display: flex;
      list-style: none;
      gap: clamp(15px, 3vw, 35px);
      align-items: center;
      flex-wrap: wrap;
      }
      .nav-list a {
      text-decoration: none;
      color: #ffffff;
      font-weight: 500;
      font-size: clamp(14px, 2.5vw, 16px);
      padding: 10px 15px;
      border-radius: 6px;
      transition: background-color 0.2s ease;
      white-space: nowrap;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
      min-height: 44px;
      display: flex;
      align-items: center;
      }
      .nav-list a:hover, .nav-list a:focus {
      background-color: rgba(255, 255, 255, 0.15);
      outline: 2px solid rgba(255, 255, 255, 0.5);
      outline-offset: 2px;
      }
      footer {
      background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
      color: #ffffff;
      padding: 50px 0 30px;
      margin-top: 80px;
      }
      .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
      }
      .footer-section h3 {
      color: #C0BBD7;
      margin-bottom: 20px;
      font-size: 18px;
      font-weight: 600;
      }
      .footer-section p, .footer-section a {
      color: #e0e0e0;
      text-decoration: none;
      margin-bottom: 10px;
      display: block;
      font-size: 14px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
      }
      .footer-section a:hover, .footer-section a:focus {
      color: #C0BBD7;
      outline: 2px solid #C0BBD7;
      outline-offset: 2px;
      padding: 5px;
      border-radius: 4px;
      }
      .footer-logo {
      height: 40px;
      width: auto;
      margin-bottom: 15px;
      }
      .footer-bottom {
      border-top: 1px solid #555;
      padding-top: 30px;
      text-align: center;
      color: #b0b0b0;
      font-size: 14px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
      }
      .cookie-popup {
      position: fixed;
      top: 20px;
      right: 20px;
      background: #ffffff;
      border: 2px solid #9F9ABF;
      border-radius: 12px;
      padding: 25px;
      max-width: 400px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      display: none;
      }
      .cookie-popup.show {
      display: block;
      }
      .cookie-popup h4 {
      color: #9F9ABF;
      margin-bottom: 15px;
      font-size: 18px;
      font-weight: 600;
      }
      .cookie-popup p {
      color: #2c2c2c;
      margin-bottom: 20px;
      font-size: 14px;
      line-height: 1.5;
      }
      .cookie-buttons {
      display: flex;
      gap: 12px;
      flex-direction: column;
      }
      .cookie-btn {
      padding: 12px 20px;
      border: none;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: background-color 0.2s ease;
      min-height: 44px;
      text-decoration: none;
      text-align: center;
      display: inline-block;
      }
      .cookie-accept {
      background-color: #9F9ABF;
      color: white;
      }
      .cookie-accept:hover, .cookie-accept:focus {
      background-color: #8A84A8;
      outline: 2px solid #2c2c2c;
      outline-offset: 2px;
      }
      .cookie-reject {
      background-color: #e9ecef;
      color: #2c2c2c;
      border: 1px solid #ced4da;
      }
      .cookie-reject:hover, .cookie-reject:focus {
      background-color: #dee2e6;
      outline: 2px solid #2c2c2c;
      outline-offset: 2px;
      }
      .cookie-learn {
      background: none;
      color: #9F9ABF;
      text-decoration: underline;
      padding: 8px;
      font-size: 13px;
      }
      .cookie-learn:hover, .cookie-learn:focus {
      color: #8A84A8;
      outline: 2px solid #8A84A8;
      outline-offset: 2px;
      text-decoration: none;
      }
      @media (max-width: 768px) {
      .header-content {
      flex-direction: column;
      gap: 20px;
      text-align: center;
      }
      nav {
      justify-content: center;
      }
      .nav-list {
      justify-content: center;
      gap: 15px;
      }
      .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
      }
      .cookie-popup {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      right: auto;
      width: 85%;
      max-width: none;
      padding: 30px;
      }
      .cookie-popup h4 {
      font-size: 20px;
      }
      .cookie-popup p {
      font-size: 18px;
      line-height: 1.6;
      }
      .cookie-btn {
      padding: 15px 25px;
      font-size: 20px;
      min-height: 50px;
      }
      .cookie-buttons {
      gap: 15px;
      }
      .cookie-learn {
      font-size: 16px;
      padding: 12px;
      }
      }
      @media (max-width: 480px) {
      .container {
      padding: 0 15px;
      }
      .nav-list {
      flex-direction: column;
      gap: 10px;
      }
      .nav-list a {
      padding: 12px 20px;
      width: 100%;
      text-align: center;
      }
      }
      .community-hero {
      background: linear-gradient(135deg, #9F9ABF 0%, #C0BBD7 100%);
      padding: 80px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
      }
      .community-hero::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(223, 219, 236, 0.2) 0%, transparent 70%);
      animation: float 20s ease-in-out infinite;
      }
      @keyframes float {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(2deg); }
      }
      .hero-content-wrapper {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 30px;
      position: relative;
      z-index: 2;
      }
      .hero-title-main {
      font-size: 3.2rem;
      color: white;
      margin-bottom: 20px;
      font-weight: 700;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
      line-height: 1.2;
      }
      .hero-subtitle {
      font-size: 1.3rem;
      color: rgba(255,255,255,0.95);
      margin-bottom: 35px;
      line-height: 1.6;
      font-weight: 400;
      }
      .hero-cta-button {
      display: inline-block;
      background: white;
      color: #9F9ABF;
      padding: 15px 35px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      }
      .hero-cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 25px rgba(0,0,0,0.3);
      color: #7A6EA0;
      }
      .collaborative-spaces {
      padding: 90px 0;
      background: #f8f9fa;
      position: relative;
      }
      .spaces-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 30px;
      }
      .spaces-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-gap: 60px;
      align-items: center;
      }
      .spaces-content {
      position: relative;
      }
      .spaces-title {
      font-size: 2.8rem;
      color: #333;
      margin-bottom: 25px;
      font-weight: 700;
      line-height: 1.3;
      }
      .spaces-description {
      font-size: 1.2rem;
      color: #555;
      line-height: 1.7;
      margin-bottom: 30px;
      }
      .spaces-features-list {
      list-style: none;
      padding: 0;
      margin-bottom: 40px;
      }
      .feature-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
      padding: 15px 0;
      }
      .feature-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #9F9ABF, #C0BBD7);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 20px;
      flex-shrink: 0;
      }
      .feature-icon::after {
      content: '→';
      color: white;
      font-weight: bold;
      font-size: 1.2rem;
      }
      .feature-text {
      font-size: 1.1rem;
      color: #444;
      line-height: 1.6;
      }
      .spaces-visual {
      position: relative;
      background: linear-gradient(45deg, #DFDBEC 0%, #C0BBD7 100%);
      border-radius: 20px;
      padding: 40px;
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      }
      .spaces-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 15px;
      filter: brightness(1.1) saturate(1.2);
      }
      .peer-network-section {
      padding: 100px 0;
      background: white;
      position: relative;
      }
      .network-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 30px;
      text-align: center;
      }
      .network-header {
      margin-bottom: 70px;
      }
      .network-title {
      font-size: 2.6rem;
      color: #333;
      margin-bottom: 20px;
      font-weight: 700;
      }
      .network-intro {
      font-size: 1.3rem;
      color: #666;
      line-height: 1.6;
      max-width: 700px;
      margin: 0 auto;
      }
      .network-showcase {
      display: flex;
      justify-content: space-around;
      align-items: center;
      margin-bottom: 60px;
      flex-wrap: wrap;
      }
      .network-member {
      text-align: center;
      margin: 20px;
      position: relative;
      }
      .member-photo {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #9F9ABF;
      margin-bottom: 15px;
      transition: transform 0.3s ease;
      }
      .member-photo:hover {
      transform: scale(1.1);
      }
      .member-name {
      font-size: 1.1rem;
      font-weight: 600;
      color: #333;
      margin-bottom: 5px;
      }
      .member-role {
      font-size: 0.95rem;
      color: #777;
      }
      .network-connections {
      position: relative;
      height: 200px;
      margin: 50px 0;
      }
      .connection-line {
      position: absolute;
      height: 2px;
      background: linear-gradient(90deg, #9F9ABF, #C0BBD7);
      border-radius: 1px;
      }
      .connection-1 {
      top: 50%;
      left: 20%;
      width: 25%;
      transform: rotate(-15deg);
      }
      .connection-2 {
      top: 60%;
      right: 20%;
      width: 30%;
      transform: rotate(20deg);
      }
      .connection-3 {
      top: 40%;
      left: 50%;
      width: 20%;
      transform: rotate(-45deg);
      }
      .network-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      grid-gap: 30px;
      margin-top: 60px;
      }
      .stat-card {
      background: linear-gradient(135deg, #DFDBEC 0%, rgba(223, 219, 236, 0.5) 100%);
      padding: 30px 20px;
      border-radius: 15px;
      text-align: center;
      transition: transform 0.3s ease;
      }
      .stat-card:hover {
      transform: translateY(-5px);
      }
      .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: #9F9ABF;
      margin-bottom: 10px;
      }
      .stat-label {
      font-size: 1.1rem;
      color: #555;
      font-weight: 500;
      }
      @media (max-width: 768px) {
      .community-hero {
      padding: 60px 0;
      }
      .hero-content-wrapper {
      padding: 0 20px;
      }
      .hero-title-main {
      font-size: 2.4rem;
      }
      .hero-subtitle {
      font-size: 1.1rem;
      }
      .spaces-grid {
      grid-template-columns: 1fr;
      grid-gap: 40px;
      }
      .spaces-title {
      font-size: 2.2rem;
      }
      .spaces-visual {
      height: 300px;
      padding: 20px;
      }
      .network-showcase {
      flex-direction: column;
      align-items: center;
      }
      .network-title {
      font-size: 2.2rem;
      }
      .network-stats {
      grid-template-columns: 1fr;
      }
      .collaborative-spaces, .peer-network-section {
      padding: 60px 0;
      }
      .connection-line {
      display: none;
      }
      }
      @media (max-width: 480px) {
      .hero-title-main {
      font-size: 2rem;
      }
      .spaces-container, .network-container {
      padding: 0 15px;
      }
      .member-photo {
      width: 100px;
      height: 100px;
      }
      }