<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  font-family: 'Roboto', sans-serif;
  background-color: #f4f4f0;
  margin: 0;
  padding: 0;
  color: #2d4633;
}
header {
  background-color: #e6efe6;
  padding: 40px 20px 50px;
  border-bottom: 1px solid #d3e0d3;
  position: relative;
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

@media (min-width: 600px) {
  .header-inner {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }
}

.preview-table {
  width: 100%;
  max-width: 600px;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

@media (max-width: 600px) {
  .preview-table {
    padding: 0 !important;
    border: none !important;
    margin: 0 !important;
  }

  .email-preview-wrapper {
    padding: 0 !important;
    border: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }

  .preview-inner {
    padding: 0 !important;
    border: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }

  .preview-inner table {
    width: 100% !important;
  }

  .masters-wrapper {
    padding: 0 20px;
    box-sizing: border-box;
  }

  .master {
    display: flex;
    align-items: flex-start; /* fixes vertical alignment */
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #f0f4f0;
    box-sizing: border-box;
  }

  .master img {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 4px;
  }

  .master &gt; div {
    flex: 1;
  }

  .master strong {
    font-size: 16px;
    display: block;
    margin-bottom: 6px;
    line-height: 1.4;
  }

  .master em {
    font-size: 15px;
    line-height: 1.6;
    display: block;
  }

  .master-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .master-button {
    margin-top: -10px;
    font-size: 10px;
    padding: 4px 4px;
  }

}

.site-logo {
  width: 100px;
  height: auto;
  margin-bottom: 6px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
}

.header-inner {
  padding-bottom: 10px;
}

.site-logo:hover {
  transform: scale(1.05);
}

.header-text h1 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: #2d4633;
  letter-spacing: -0.5px;
}

.header-text p {
  margin: 6px 0 0;
  font-size: 16px;
  color: #4a5c4a;
}

/* Subtle gradient fade effect */
header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(to right, #cfe0cf, #a8c5a8, #cfe0cf);
  border-radius: 2px;
  opacity: 0.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  border-left: 1px solid #dce5dc;
  border-right: 1px solid #dce5dc;
  padding: 60px 20px;
  background: #f9faf8;
  /*box-shadow: inset 0 1px 0 #e6ece6, inset 0 -1px 0 #e6ece6;*/
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.hero-left {
  flex: 2;
  min-width: 400px;
  color: #2d4633;
}

@media (max-width: 900px) {
  .hero-left {
    min-width: 100%;
  }
}

.hero-left h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.hero-left p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.masters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mobile-break {
  display: none;
}

@media (max-width: 768px) {
  .masters {
    grid-template-columns: 1fr;
  }
  .mobile-break {
    display: inline;
  }
}

@media (min-width: 769px) {
  .master:nth-child(odd) {
    background-color: #eceee9;
  }
  .master:nth-child(even) {
    background-color: #e6e9e0;
  }
}


.hero-right {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  position: sticky;
  top: 80px;
  align-self: flex-start;
  transition: top 0.3s ease;
  margin-top: 3.5rem;
}

.master {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin: 0;
  width: 100%;
  background: #f8f9f6;
  padding: 10px 5px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  transition: transform 0.2s ease;
}

.master &gt; div {
  margin-top: 4px; /* nudges text down slightly to balance image */
}

.master-header {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}

.master-header strong {
  font-size: 15px;
  flex-shrink: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.master-button {
  background-color: #2d4633;
  color: #fff;
  font-size: 10px;
  padding: 4px 4px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.master-button:hover {
  background-color: #3c5c46;
  transform: translateY(-1px);
}

.master blockquote {
  font-style: italic;
  font-size: 14px;
  margin: 0;
  color: #4a5c4a;
}

.master:hover {
  transform: translateY(-2px);
  background: #f1f4ef;
}

.master:nth-child(4n+1), /* 1, 5, 9... (left column, light) */
.master:nth-child(4n+4)  /* 4, 8, 12... (right column, light) */ {
  background: #eceee9; /* light */
}

.master:nth-child(4n+2), /* 2, 6, 10... (right column, dark) */
.master:nth-child(4n+3)  /* 3, 7, 11... (left column, dark) */ {
  background: #e6e9e0; /* dark */
}

.master img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #cfdccc;
  background: #fff;
}

.master strong {
  display: block;
  font-size: 15px;
  color: #2d4633;
}

.master em {
  font-size: 14.5px;
  color: #4b5e4b;
  line-height: 1.6;
  display: block;
  margin-top: 4px;
}

.signup {
  background: #ffffff;
  padding: 40px 30px 50px;
  max-width: 400px;
  margin: 0px auto 60px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  border: 1px solid #dce5dc;
}

.signup h2 {
  margin-top: 0;
  font-size: 26px;
  text-align: center;
  color: #2d4633;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: 500;
  color: #2d4633;
}

.signup input,
.signup select {
  padding: 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f6;
  transition: border 0.3s, box-shadow 0.3s;
}

.signup input:focus,
.signup select:focus {
  outline: none;
  border-color: #89a88b;
  box-shadow: 0 0 0 3px rgba(137, 168, 139, 0.2);
}

.signup button {
  background-color: #2d4633;
  color: white;
  font-size: 18px;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.signup button:hover {
  background-color: #3c5c46;
  transform: translateY(-1px);
}

.class-descriptions {
  background-color: #f9faf8;
  border: 1px solid #dce5dc;
  padding: 50px 30px;
  margin: 80px auto 60px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.class-descriptions-inner {
  text-align: left;
  /*max-width: 720px;*/
  margin: 0 auto;
}

.class-descriptions h3 {
  font-size: 24px;
  color: #2d4633;
  margin-bottom: 16px;
}


.class-descriptions ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  /*max-width: 720px;*/
  text-align: left;
}

.class-descriptions p {
  font-size: 15.5px;
  color: #4a5c4a;
  line-height: 1.7;
  margin: 0 auto 30px;
  text-align: left;
  /*max-width: 720px;*/
}

.class-descriptions li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f0f3ec;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 15px;
  color: #2d4633;
  border: 1px solid #d8e4d8;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
  transition: background 0.3s ease, transform 0.15s ease;
  cursor: default;
}

.class-descriptions li::before {
  content: "ðŸŒ¿";
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.class-descriptions li .title {
  font-weight: 600;
  white-space: nowrap;
  padding-right: 12px;
  color: #2d4633;
}

.class-descriptions li .desc {
  flex: 1;
  font-size: 15.5px;
  line-height: 1.6;
}

.class-descriptions li .desc::before {
  content: "â€” ";
  margin-right: 6px;
}

.class-descriptions li strong {
  min-width: 260px;
  font-size: 15.5px;
  flex-shrink: 0;
  white-space: nowrap;
}

.class-descriptions li span {
  flex: 1;
}

.class-descriptions li:hover {
  background: #e8ede4;
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .master-header {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }

  .master-header strong {
    flex: 1;
    min-width: 0;
  }

  .master-button {
    flex-shrink: 0;
  }

  .class-descriptions li {
    flex-direction: column;
    align-items: flex-start;
  }

  .class-descriptions li .title {
    margin-bottom: 6px;
    white-space: normal;
  }

  .class-descriptions li .desc::before {
    content: ""; /* Remove em dash for stacked layout */
  }

}

.class-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .class-grid {
    grid-template-columns: 1fr;
  }
}

.class-section-heading {
  font-size: 20px;
  font-weight: 600;
  color: #2d4633;
  margin: 60px 0 20px;
}

.class-content {
  flex: 1;
}

.class-card {
  background: #f9faf8;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #dce5dc;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.class-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.class-icon {
  font-size: 26px;
  margin-bottom: 12px;
}

.class-title {
  font-weight: 600;
  font-size: 16.5px;
  margin-bottom: 8px;
  color: #2d4633;
}

.class-desc {
  font-size: 15px;
  color: #4a5c4a;
  flex: 1;
  line-height: 1.6;
  margin-bottom: 16px;
}

.class-button {
  background-color: #2d4633;
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.25s ease;
}

.class-button:hover {
  background-color: #3c5c46;
}

/* Section-specific themes */
.section-emotional .class-card {
  background-color: #fff5f5;
  border-color: #f1dede;
}
.section-emotional .class-button {
  background-color: #944d4d;
}
.section-emotional .class-button:hover {
  background-color: #7a3a3a;
}

.section-material .class-card {
  background-color: #fffef4;
  border-color: #eeeccc;
}
.section-material .class-button {
  background-color: #7b7026;
}
.section-material .class-button:hover {
  background-color: #5c561b;
}

.section-relationship .class-card {
  background-color: #fef6fb;
  border-color: #eed5e9;
}
.section-relationship .class-button {
  background-color: #8b4b7c;
}
.section-relationship .class-button:hover {
  background-color: #703962;
}

.section-spiritual .class-card {
  background-color: #f3f8f8;
  border-color: #d4e4e4;
}
.section-spiritual .class-button {
  background-color: #2b6777;
}
.section-spiritual .class-button:hover {
  background-color: #1e4d5d;
}




.preview {
  max-width: 1200px;
  margin: 20px auto;
  background-color: #f9faf8;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #e0e6e0;
}

.preview-inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.preview::before {
  content: "";
  display: block;
  height: 4px;
  width: 60%;
  margin: 0 auto 30px;
  background: linear-gradient(to right, #cfe0cf, #a8c5a8, #cfe0cf);
  border-radius: 2px;
  opacity: 0.5;
}

.preview h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.preview-heading {
  text-align: center;
  margin-bottom: 30px;
}

.preview-heading h3 {
  font-size: 24px;
  color: #2d4633;
  margin-bottom: 8px;
}

.preview-heading p {
  font-size: 15px;
  color: #4a5c4a;
  margin: 0 auto;
  max-width: 520px;
}

.email-preview-wrapper {
  background-color: #f4f4f0;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e1e8e1;
}

.footer-enhanced {
  background-color: #e6efe6;
  padding: 60px 20px;
  border-top: 1px solid #d3e0d3;
  margin-top: 60px;
  font-size: 15px;
  color: #2d4633;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  margin-bottom: 20px;
  opacity: 0.85;
}

.footer-classes p {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
  color: #2d4633;
}

.footer-classes ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
}

.footer-column h4 {
  font-size: 17px;
  font-weight: 700;
  color: #2d4633;
  margin-bottom: 12px;
  padding-left: 0;
}

.footer-subtitle {
  font-weight: 600;
  display: block;
  margin: 20px 0 10px 12px;
  color: #2d4633;
}

.footer-column ul {
  list-style: none;
  padding-left: 0px;
  margin: 0;
}

.footer-column ul li {
  align-items: flex-start;
  line-height: 1.6;
}

.footer-column ul li .icon {
  flex-shrink: 0;
}

.footer-masters li {
  display: flex;
  align-items: center;
  gap: 0px;
  margin-bottom: 8px;
}

.footer-classes ul li a {
  color: #2d4633;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-classes ul li a:hover {
  color: #3c5c46;
  text-decoration: underline;
}

.footer-copy p {
  margin: 6px 0;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.footer-copy .tagline {
  font-style: italic;
  color: #7a8a7a;
  font-size: 13.5px;
}


.footer-copy {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.site-footer {
  background-color: #f4f5f3;
  padding: 50px 30px;
  border-top: 1px solid #dce5dc;
  color: #2d4633;
  font-size: 15px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 240px;
  min-width: 200px;
}

.footer-subgroup {
  margin-bottom: 24px;
}

.footer-column ul li a {
  color: #2d4633;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: #3c5c46;
}

.footer-masters li img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 10px;
  border: 1px solid #ccc;
  object-fit: cover;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #7a8a7a;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #d0ddd0;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 32px;
  }
}


@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 30px 16px;
  }

  .hero-left,
  .hero-right {
    min-width: 100%;
    max-width: 100%;
  }

  .page {
    padding: 20px 16px;
    flex-direction: column;
  }

  .page-inner {
    flex-direction: column;
    gap: 20px;
  }

  .preview-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 16px;
  }

  .email-preview-wrapper {
    padding: 16px;
    border-radius: 10px;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
}

.hero-subscribe {
  background-image: linear-gradient(
    rgba(244, 244, 240, 0.75), 
    rgba(244, 244, 240, 0.75)
  ), url("/ocean.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.hero-subscribe::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(244, 244, 240, 0.88); /* soft neutral overlay */
  z-index: -1;
}

</pre></body></html>