/** Shopify CDN: Minification failed

Line 643:55 Unexpected "-"

**/
/**
 * Miminoo About Us Page Styles
 * Design Philosophy: Desert Modernism meets Scandinavian Warmth
 * 
 * Brand Colors:
 * - Rust: #B16532
 * - Terracotta: #C29777
 * - Sage: #8BA199
 * - Teal: #4E6D6F
 * - Peach: #DFA98E
 * - Blush: #F4D6CA
 * - Beige: #E1D0C3
 * - Cream: #EDEEEF
 */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Yeseva+One&family=Inter:wght@400;500;600;700&display=swap');

/* Global Styles */
.about-us-page {
  font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #3A3A3A;
}

.about-us-page h1,
.about-us-page h2,
.about-us-page h3,
.about-us-page h4 {
  font-family: 'Yeseva One', Georgia, serif;
  line-height: 1.2;
  font-weight: 400;
  color: #3A3A3A;
}

.about-us-page h1 {
  font-size: 2.5rem;
  color: #B16532;
}

.about-us-page h2 {
  font-size: 2rem;
}

.about-us-page h3 {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .about-us-page h1 {
    font-size: 3.5rem;
  }
  
  .about-us-page h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .about-us-page h1 {
    font-size: 4rem;
  }
  
  .about-us-page h2 {
    font-size: 3rem;
  }
}

/* Container */
.about-us-page .container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .about-us-page .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .about-us-page .container {
    padding: 0 2rem;
  }
}

/* Buttons */
.about-us-page .btn {
  display: inline-block;
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 9999px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.about-us-page .btn-primary {
  background-color: #B16532;
  color: #FFFFFF;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.about-us-page .btn-primary:hover {
  background-color: #C29777;
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  color: #FFFFFF;
  text-decoration: none;
}

/* Hero Section */
.about-us-page .hero-section {
  position: relative;
  overflow: hidden;
  background-color: #EDEEEF;
  padding: 4rem 0 5rem 0;
}

@media (min-width: 768px) {
  .about-us-page .hero-section {
    padding: 6rem 0 5rem 0;
  }
}

@media (min-width: 1024px) {
  .about-us-page .hero-section {
    padding: 8rem 0 5rem 0;
  }
}

.about-us-page .hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-us-page .hero-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.about-us-page .hero-content {
  animation: fadeUp 0.8s ease-out;
}

.about-us-page .hero-title {
  margin-bottom: 1.5rem;
}

.about-us-page .hero-description p {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(0,0,0,0.9);
}

.about-us-page .hero-description p:last-child {
  margin-bottom: 0;
}

.about-us-page .hero-description strong {
  color: #B16532;
}

.about-us-page .hero-image {
  animation: fadeUp 0.8s ease-out 0.2s backwards;
}

.about-us-page .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: block;
}

.about-us-page .wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.about-us-page .wave-divider svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Benefits Section */
.about-us-page .benefits-section {
  background-color: #EDEEEF;
  padding: 3rem 0 3rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .about-us-page .benefits-section {
    padding: 4rem 0 4rem 0;
  }
}

@media (min-width: 1024px) {
  .about-us-page .benefits-section {
    padding: 5rem 0 5rem 0;
  }
}

.about-us-page .section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeUp 0.8s ease-out;
}

.about-us-page .section-header h2 {
  color: #4E6D6F;
  margin-bottom: 1rem;
}

.about-us-page .section-description {
  font-size: 1.25rem;
  color: rgba(0,0,0,0.8);
  max-width: 48rem;
  margin: 0 auto;
}

.about-us-page .benefits-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .about-us-page .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-us-page .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.about-us-page .benefit-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: fadeUp 0.8s ease-out backwards;
}

.about-us-page .benefit-card:nth-child(1) { animation-delay: 0.1s; }
.about-us-page .benefit-card:nth-child(2) { animation-delay: 0.2s; }
.about-us-page .benefit-card:nth-child(3) { animation-delay: 0.3s; }
.about-us-page .benefit-card:nth-child(4) { animation-delay: 0.4s; }

.about-us-page .benefit-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.about-us-page .benefit-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.about-us-page .benefit-icon svg {
  width: 2rem;
  height: 2rem;
}

.about-us-page .benefit-icon-blush {
  background-color: #F4D6CA;
}

.about-us-page .benefit-icon-blush svg {
  stroke: #B16532;
}

.about-us-page .benefit-icon-peach {
  background-color: #DFA98E;
}

.about-us-page .benefit-icon-peach svg {
  stroke: #B16532;
}

.about-us-page .benefit-icon-sage {
  background-color: rgba(139, 161, 153, 0.3);
}

.about-us-page .benefit-icon-sage svg {
  stroke: #4E6D6F;
}

.about-us-page .benefit-card h3 {
  color: #4E6D6F;
  margin-bottom: 0.75rem;
}

.about-us-page .benefit-card p {
  color: rgba(0,0,0,0.8);
  line-height: 1.625;
  margin: 0;
}

/* Story Section */
.about-us-page .story-section {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23EDEEEF" fill-opacity="0.2" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center bottom;
  background-size: cover;
}

@media (min-width: 768px) {
  .about-us-page .story-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .about-us-page .story-section {
    padding: 5rem 0;
  }
}

.about-us-page .story-content {
  max-width: 64rem;
  margin: 0 auto;
  animation: fadeUp 0.8s ease-out;
}

.about-us-page .story-content h2 {
  text-align: center;
  color: #B16532;
  margin-bottom: 2rem;
}

.about-us-page .story-text {
  margin-bottom: 2rem;
}

.about-us-page .story-text p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(0,0,0,0.9);
  margin-bottom: 1.5rem;
}

.about-us-page .values-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .about-us-page .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-us-page .value-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.about-us-page .value-card h3 {
  color: #B16532;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.about-us-page .value-card p {
  color: rgba(0,0,0,0.8);
  margin: 0;
}

/* Product Showcase Section */
.about-us-page .product-showcase {
  background-color: #E1D0C3;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .about-us-page .product-showcase {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .about-us-page .product-showcase {
    padding: 5rem 0;
  }
}

.about-us-page .showcase-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-us-page .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

.about-us-page .showcase-image {
  order: 2;
  animation: fadeUp 0.8s ease-out;
}

@media (min-width: 1024px) {
  .about-us-page .showcase-image {
    order: 1;
  }
}

.about-us-page .showcase-image img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: block;
}

.about-us-page .showcase-content {
  order: 1;
  animation: fadeUp 0.8s ease-out 0.2s backwards;
}

@media (min-width: 1024px) {
  .about-us-page .showcase-content {
    order: 2;
  }
}

.about-us-page .showcase-content h2 {
  color: #4E6D6F;
  margin-bottom: 1.5rem;
}

.about-us-page .showcase-content p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(0,0,0,0.9);
  margin-bottom: 1.5rem;
}

.about-us-page .showcase-content p:last-child {
  margin-bottom: 0;
}

/* Founder Section */
.about-us-page .founder-section {
  background-color: white;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .about-us-page .founder-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .about-us-page .founder-section {
    padding: 5rem 0;
  }
}

.about-us-page .founder-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .about-us-page .founder-layout {
    flex-direction: row;
    gap: 3rem;
  }
}

.about-us-page .founder-portrait {
  flex-shrink: 0;
  width: 12rem;
  animation: fadeUp 0.8s ease-out;
}

@media (min-width: 768px) {
  .about-us-page .founder-portrait {
    width: 14rem;
  }
}

.about-us-page .founder-portrait img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  filter: grayscale(100%);
  display: block;
}

.about-us-page .founder-content {
  flex: 1;
  animation: fadeUp 0.8s ease-out 0.2s backwards;
}

.about-us-page .founder-content h2 {
  color: #B16532;
  margin-bottom: 1.5rem;
}

.about-us-page .founder-bio p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(0,0,0,0.9);
  margin-bottom: 1rem;
}

.about-us-page .founder-bio p:last-child {
  margin-bottom: 0;
}

.about-us-page .founder-signature {
  font-style: italic;
  color: #B16532;
  font-weight: 500;
}

.about-us-page .founder-name {
  font-weight: 600;
  color: #4E6D6F;
}

.about-us-page .founder-name span {
  font-size: 0.875rem;
  font-weight: 400;
}

/* CTA Section */
.about-us-page .cta-section {
  background: linear-gradient(to bottom, #EDEEEF, #E1D0C3);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .about-us-page .cta-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .about-us-page .cta-section {
    padding: 5rem 0;
  }
}

.about-us-page .cta-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  animation: fadeUp 0.8s ease-out;
}

.about-us-page .cta-content h2 {
  color: #B16532;
  margin-bottom: 2rem;
}

.about-us-page .cta-content p {
  font-size: 1.25rem;
  line-height: 1.75;
  color: rgba(0,0,0,0.9);
  margin-bottom: 2rem;
}

.about-us-page .cta-content .btn {
  margin-top: 1rem;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Typography */
@media (max-width: 767px) {
  .about-us-page {
    font-size: 16px;
  }
  
  .about-us-page h1 {
    font-size: 2.25rem;
  }
  
  .about-us-page h2 {
    font-size: 1.875rem;
  }
  
  .about-us-page h3 {
    font-size: 1.25rem;
  }
}
How to Redesign an About Us Page Like Educator Program - Manus