/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure images are visible by default */
img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2A1B1B;
    background-color: #968794;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2A1B1B;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: #CFC4CC;
    color: #4A3B3B;
}

.btn-primary:hover {
    background-color: #B8A9B3;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #E0D9DF;
    color: #4A3B3B;
}

.btn-secondary:hover {
    background-color: #CFC4CC;
}

.btn-outline {
    background-color: transparent;
    color: #4A3B3B;
    border: 2px solid #CFC4CC;
}

.btn-outline:hover {
    background-color: #CFC4CC;
    color: #4A3B3B;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    background-color: rgba(150, 135, 148, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(74, 59, 59, 0.1);
}

.mobile-menu-btn:active {
    background-color: rgba(74, 59, 59, 0.2);
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #4A3B3B;
    border-radius: 1px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    position: relative;
}

/* Hamburger animation states */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 59, 59, 0.98) 0%, rgba(107, 91, 107, 0.95) 100%);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transform: translateY(-30px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0) scale(1);
}

.mobile-menu-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(-20px);
    animation: slideInDown 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s forwards;
}

@keyframes slideInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.mobile-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 3rem;
    text-align: center;
    width: 100%;
    max-width: 300px;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-family: 'Playfair Display', serif;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.mobile-nav-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-link:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-link:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-link:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav-link:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-link:hover::before {
    left: 100%;
}

.mobile-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
    max-width: 300px;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.6s forwards;
}

.mobile-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.mobile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4A3B3B;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4A3B3B;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #8B7B8B;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #CFC4CC;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.order-link {
    text-decoration: none;
    color: #4A3B3B;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: #CFC4CC;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #A99DAA 0%, #CFC4CC 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #4A3B3B;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #6B5B6B;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #968794;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background-color: #a89fa9;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step-image {
    margin-bottom: 1.5rem;
}

.step-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 15px;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2A1B1B;
}

.step-description {
    color: #2A1B1B;
    line-height: 1.6;
}

/* Image Carousel Section */
.carousel-section {
    padding: 80px 0;
    background-color: #a89fa9;
    text-align: center;
}

.carousel-section .section-title {
    margin-bottom: 3rem;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    position: relative;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    border-radius: 0 0 20px 20px;
    text-align: left;
}

.carousel-caption h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.carousel-caption p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    color: #4A3B3B;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Responsive Design for Carousel */
@media (max-width: 768px) {
    .carousel-container {
        max-width: 100%;
        margin: 0 1rem;
    }
    
    .carousel-image {
        height: 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-caption {
        padding: 1.5rem 1rem 1rem;
    }
    
    .carousel-caption h4 {
        font-size: 1.3rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
}

/* Additional carousel enhancements */
.carousel-slide {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.carousel-container:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn {
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.carousel-btn:hover {
    opacity: 1;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #968794;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background-color: #a89fa9;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card.featured {
    border: 3px solid #CFC4CC;
    transform: scale(1.05);
}

.product-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.product-image {
    margin-bottom: 1.5rem;
}

.product-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 15px;
}

.product-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2A1B1B;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: #8B7B8B;
    margin-bottom: 1rem;
}

.product-description {
    color: #2A1B1B;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Sign Up Section */
.signup {
    padding: 80px 0;
    background: linear-gradient(135deg, #CFC4CC 0%, #E0D9DF 100%);
}

/* Form Row Layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2A1B1B;
}

/* About the Founder Section */
.about-founder {
    padding: 80px 0;
    background-color: #968794;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.founder-image {
    text-align: center;
}

.founder-img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.founder-text p {
    margin-bottom: 1.5rem;
    color: #6B5B6B;
    line-height: 1.8;
}

/* Who We Are Section */
.who-we-are {
    padding: 80px 0;
    background-color: #D3D0D6;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text p {
    margin-bottom: 1.5rem;
    color: #4A3B3B;
    line-height: 1.8;
}

.section-subtitle {
    font-size: 1.5rem;
    color: #4A3B3B;
    margin-bottom: 1.5rem;
    text-decoration: underline;
    text-decoration-color: #4A3B3B;
}

.stylized-torso {
    width: 200px;
    height: 300px;
    background: linear-gradient(135deg, #4A3B3B 0%, #6B5B6B 100%);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.stylized-torso::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    right: 20%;
    bottom: 20%;
    background: transparent;
    border: 3px solid #CFC4CC;
    border-radius: 50%;
}

/* Impact, Sustainability & Guarantee Section */
.impact-sustainability-guarantee {
    padding: 40px 0;
    background-color: #A89DA8;
    color: #FFFFFF;
}

.impact-sustainability-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.impact-sustainability-content .section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #FFFFFF;
    text-decoration: underline;
    text-decoration-color: #FFFFFF;
    text-decoration-thickness: 2px;
}

.info-table {
    width: 100%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    overflow: hidden;
}

.table-row {
    display: grid;
    gap: 0;
}

.top-row {
    grid-template-columns: 1fr 1fr;
}

.bottom-row {
    grid-template-columns: 1fr;
}

.table-cell {
    padding: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.top-row .table-cell:last-child {
    border-right: none;
}

.bottom-row .table-cell {
    border-right: none;
    border-bottom: none;
}

.full-width {
    grid-column: 1 / -1;
}

.table-cell h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: #FFFFFF;
    text-decoration-thickness: 1px;
}

.guarantee-cell h3 {
    margin-bottom: 0.1rem;
}

.impact-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    line-height: 1.4;
}

.impact-solution {
    background-color: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-top: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.impact-solution p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* Sustainable by Design Section */
.sustainable-design {
    padding: 80px 0;
    background-color: #968794;
}

.sustainability-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.sustainability-text p {
    margin-bottom: 0.75rem;
    color: #FFFFFF;
    line-height: 1.5;
    font-size: 0.9rem;
}

.sustainability-visual {
    text-align: center;
    margin-top: auto;
}

.sustainability-image {
    width: 100%;
    max-width: 120px;
    height: auto;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sustainability-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Guarantee section in table */
.guarantee-cell p {
    color: #FFFFFF;
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.guarantee-cell p:last-child {
    margin-bottom: 0;
    margin-top: auto;
}

/* Perfect Fit Section */
.perfect-fit {
    padding: 80px 0;
    background-color: #F8F7F9;
}

.perfect-fit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.perfect-fit-text p {
    margin-bottom: 1.5rem;
    color: #6B5B6B;
    line-height: 1.8;
}

.perfect-fit-text h3 {
    color: #4A3B3B;
    margin: 2rem 0 1rem 0;
    font-size: 1.3rem;
}

.perfect-fit-text ul {
    list-style: none;
    padding: 0;
}

.perfect-fit-text li {
    padding: 0.5rem 0;
    color: #6B5B6B;
    position: relative;
    padding-left: 1.5rem;
}

.perfect-fit-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #CFC4CC;
    font-weight: bold;
}

.pattern-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
}

.pattern-piece {
    width: 100%;
    height: 200px;
    border: 2px solid #CFC4CC;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #F8F7F9;
    overflow: hidden;
}

.pattern-piece:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #B8A9B3;
}

.pattern-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pattern-piece:hover .pattern-image {
    transform: scale(1.05);
}

.pattern-label {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    background-color: rgba(207, 196, 204, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

/* Customer Guarantee Section */
.customer-guarantee {
    padding: 80px 0;
    background-color: #E0D9DF;
    text-align: center;
}

.guarantee-section p {
    max-width: 700px;
    margin: 0 auto 1rem auto;
    color: #FFFFFF;
    line-height: 1.6;
    font-size: 1rem;
}

/* Contact Us Section */
.contact-us {
    padding: 80px 0;
    background-color: #968794;
}

.contact-content {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.contact-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Contact Page Styles */
.contact-us-page {
    padding: 120px 0 80px;
    background-color: #968794;
    min-height: 100vh;
}

.page-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2A1B1B;
}

.page-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    color: #2A1B1B;
    font-size: 1.2rem;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    color: #2A1B1B;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info p {
    color: #2A1B1B;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #4A3B3B;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-text strong {
    color: #2A1B1B;
    font-weight: 600;
}

.contact-text span {
    color: #2A1B1B;
}

.contact-faq {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #E0D9DF;
}

.contact-faq h4 {
    color: #4A3B3B;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item strong {
    color: #4A3B3B;
    display: block;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: #6B5B6B;
    line-height: 1.6;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.faq-list li {
    color: #6B5B6B;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.faq-list li:before {
    content: "•";
    color: #CFC4CC;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.faq-list li:last-child {
    margin-bottom: 0;
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    animation: slideIn 0.3s ease-out;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.notification.success {
    background-color: #10B981;
    color: white;
}

.notification.error {
    background-color: #EF4444;
    color: white;
}

.notification-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-text {
    flex: 1;
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.notification-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.contact-form h3 {
    color: #4A3B3B;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Not Ready Section */
.not-ready {
    padding: 80px 0;
    background-color: #A89DA8;
    text-align: center;
    color: #FFFFFF;
}

/* Tutorials Page Styles */
.tutorials-main {
    padding: 120px 0 80px;
    background-color: #D9D4D9;
    min-height: 100vh;
}

.tutorials-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.tutorial-section {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.tutorial-media {
    margin-bottom: 2rem;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.media-placeholder {
    width: 100%;
    height: 300px;
    background-color: #7A737A;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.placeholder-text {
    color: #CFC4CC;
    font-size: 1.1rem;
    font-weight: 500;
}

.tutorial-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2A1B1B;
    margin-bottom: 1rem;
    text-decoration: underline;
    text-decoration-color: #2A1B1B;
    text-decoration-thickness: 2px;
}

.tutorial-description {
    color: #2A1B1B;
    line-height: 1.6;
    font-size: 1.1rem;
}

.tutorials-message {
    text-align: center;
    margin-top: 3rem;
}

.tutorials-message p {
    color: #4A3B3B;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
}

/* Active Navigation Link */
.nav-link.active {
    color: #4A3B3B;
    text-decoration: underline;
    text-decoration-color: #4A3B3B;
    text-decoration-thickness: 2px;
}

/* Sign In Link */
.signin-link {
    color: #4A3B3B;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.signin-link:hover {
    color: #8B7B8B;
}

/* Request Tutorial Section */
.request-tutorial {
    padding: 80px 0;
    background-color: #CFC4CC;
    text-align: center;
}

.request-description {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    color: #4A3B3B;
    font-size: 1.1rem;
    line-height: 1.6;
}

.request-btn {
    background-color: #A090A0;
    color: #FFFFFF;
    border: none;
}

.request-btn:hover {
    background-color: #8B7B8B;
}

.not-ready-description {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    font-size: 1.2rem;
    line-height: 1.6;
}

.not-ready-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.signup-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.signup-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #6B5B6B;
}

.signup-form {
    background-color: #a89fa9;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E0D9DF;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #FFFFFF;
    color: #2A1B1B;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #CFC4CC;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background-color: #4A3B3B;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 3rem;
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-tagline {
    color: #CFC4CC;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.footer-btn {
    background-color: #C7B8C7;
    color: #4A3B3B;
    border: none;
}

.footer-columns {
    display: flex;
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column h4 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}

.footer-column a {
    color: #CFC4CC;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #6B5B6B;
    color: #CFC4CC;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal[style*="display: block"] {
    display: block !important;
}

.modal-content {
    background-color: #FFFFFF;
    margin: 15% auto;
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #6B5B6B;
    z-index: 2001;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.close:hover {
    color: #4A3B3B;
}

/* Community Modal Specific Styles */
.community-modal-content {
    max-width: 600px;
    max-height: 90vh;
    padding: 3rem;
    overflow-y: auto;
    margin: 5% auto;
}

.community-modal-content .signup-content {
    text-align: center;
}

.community-modal-content .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #4A3B3B;
}

.community-modal-content .signup-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #6B5B6B;
    line-height: 1.6;
}

.community-modal-content .signup-form {
    text-align: left;
}

/* Custom scrollbar for the modal */
.community-modal-content::-webkit-scrollbar {
    width: 8px;
}

.community-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.community-modal-content::-webkit-scrollbar-thumb {
    background: #CFC4CC;
    border-radius: 4px;
}

.community-modal-content::-webkit-scrollbar-thumb:hover {
    background: #B8A9B3;
}

/* Terms and Conditions Modal Styles */
.terms-modal-content {
    max-width: 800px;
    max-height: 90vh;
    padding: 2rem;
    overflow-y: auto;
    margin: 3% auto;
}

.terms-content {
    text-align: left;
}

.terms-content .section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #4A3B3B;
}

.terms-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6B5B6B;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #F8F7F9;
    border-radius: 10px;
    border-left: 4px solid #CFC4CC;
}

.terms-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.terms-section h3 {
    color: #4A3B3B;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.terms-section p {
    color: #6B5B6B;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.terms-section ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.terms-section li {
    color: #6B5B6B;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.terms-section li:before {
    content: "•";
    color: #CFC4CC;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.terms-contact-link {
    color: #CFC4CC;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.terms-contact-link:hover {
    color: #B8A9B3;
    text-decoration: underline;
}

/* Calendly popup customization */
.calendly-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    display: none;
    backdrop-filter: blur(5px);
}

.calendly-popup-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.calendly-popup-content .calendly-inline-widget {
    width: 100%;
    max-width: 800px;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.calendly-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: #4A3B3B;
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

.calendly-popup-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Ensure close button is visible over Calendly */
.calendly-popup-close.visible {
    opacity: 1;
}

/* Position the close button to be over the Calendly form */
@media (min-width: 768px) {
    .calendly-popup-close {
        top: 30px;
        right: 30px;
    }
}

/* Mobile responsive for Calendly close button */
@media (max-width: 768px) {
    .calendly-popup-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header Mobile Styles */
    .header .container {
        flex-direction: row;
        gap: 0;
    }
    
    .nav {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Hero Section Mobile */
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Process Steps Mobile */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    /* Product Grid Mobile */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .product-card.featured:hover {
        transform: translateY(-10px);
    }
    
    /* Footer Mobile */
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-columns {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        margin-top: 1rem;
    }
    
    .footer-column {
        text-align: center;
        min-width: 120px;
    }
    
    /* Extra small mobile optimization */
    @media (max-width: 480px) {
        .footer-columns {
            gap: 1.5rem;
        }
        
        .footer-column {
            min-width: 100px;
        }
        
        .footer {
            padding: 1.2rem 0 0.8rem;
        }
        
        .footer-content {
            gap: 0.8rem;
            margin-bottom: 0.8rem;
        }
        
        .footer-btn {
            padding: 8px 16px;
            font-size: 0.85rem;
            min-width: 110px;
        }
        
        .footer-logo-text {
            font-size: 0.85rem;
        }
        
        .footer-tagline {
            font-size: 0.75rem;
        }
    }
    
    .footer-brand {
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .footer-logo {
        margin-bottom: 0.6rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-tagline {
        margin-bottom: 0.8rem;
        text-align: center;
    }
    
    .footer-btn {
        align-self: center;
        margin: 0 auto;
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 120px;
    }
    
    .footer-bottom {
        padding-top: 1rem;
    }
    
    /* Additional mobile footer improvements */
    .footer-logo-text {
        font-size: 0.9rem;
    }
    
    .footer-tagline {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-column h4 {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-column a {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
        display: block;
    }
    
    /* Mobile modal adjustments */
    .community-modal-content {
        max-height: 95vh;
        margin: 2% auto;
        padding: 2rem;
    }
    
    .community-modal-content .section-title {
        font-size: 2rem;
    }
    
    /* Carousel Mobile */
    .carousel-container {
        max-width: 100%;
        margin: 0 1rem;
    }
    
    .carousel-image {
        height: 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-caption {
        padding: 1.5rem 1rem 1rem;
    }
    
    .carousel-caption h4 {
        font-size: 1.3rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    /* Pattern blocks mobile */
    .pattern-blocks {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .pattern-piece {
        height: 100px;
    }
    
    .pattern-label {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
    
    /* Sustainability image mobile */
    .sustainability-image {
        max-width: 250px;
    }
    
    .founder-content,
    .mission-content,
    .sustainability-content,
    .perfect-fit-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .impact-sustainability-content {
        gap: 1rem;
    }
    
    .info-table {
        border-width: 1px;
    }
    
    .top-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .bottom-row {
        grid-template-columns: 1fr;
    }
    
    .table-cell {
        min-height: auto;
        padding: 1rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .top-row .table-cell:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .bottom-row .table-cell {
        border-bottom: none;
    }
    
    .sustainability-image {
        max-width: 100px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Mobile contact form improvements */
    .contact-form h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-form .form-group {
        margin-bottom: 1.5rem;
    }
    
    .contact-form label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 12px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .contact-form .btn-large {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .pattern-blocks {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .pattern-piece {
        width: 100%;
        height: 150px;
    }
    
    .tutorials-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tutorial-section {
        padding: 1.5rem;
    }
    
    .media-placeholder {
        height: 200px;
    }
    
    .video-container {
        padding-bottom: 56.25%; /* Maintain 16:9 aspect ratio on mobile */
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .contact-info {
        text-align: left;
    }
    
    .contact-faq {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .contact-details {
        gap: 1.5rem;
    }
    
    .contact-item {
        margin-bottom: 1.2rem;
    }
    
    .contact-icon {
        font-size: 1.3rem;
    }
    
    .faq-item {
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .faq-item strong {
        display: block;
        margin-bottom: 0.5rem;
        color: #4A3B3B;
    }
    
    .faq-item p {
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }
    
    .faq-list {
        margin-left: 1rem;
        margin-top: 0.5rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .signup-form {
        padding: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}
