:root {
    --turquoise: #35c7d0;
    --light-purple: #a18aff;
    --golden: #ffcd38;
    --white: #ffffff;
    --light-gray: #f7f7fa;
    --soft-green: #b3e8ca;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    min-height: 100vh;
}

.back-btn {
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--light-purple) 100%);
    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(53, 199, 208, 0.3);
}

.section-card {
    background: var(--white);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    box-shadow: 0 12px 35px rgba(161, 138, 255, 0.15);
    transition: all 0.3s ease;
}

.section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, var(--turquoise), var(--light-purple), var(--golden));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.section-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(161, 138, 255, 0.15);
}

.title-gradient {
    background: linear-gradient(135deg, var(--turquoise) 0%, var(--light-purple) 50%, var(--golden) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent-border {
    border-left: 4px solid var(--turquoise);
    background: linear-gradient(90deg, rgba(53, 199, 208, 0.1) 0%, transparent 100%);
}

.golden-accent {
    color: var(--golden);
}

.image-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.image-container:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.zen-pattern {
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(53, 199, 208, 0.03) 10px,
        rgba(53, 199, 208, 0.03) 20px
    );
}

.content-section {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.content-section:hover {
    box-shadow: 0 8px 30px rgba(161, 138, 255, 0.12);
}

.quote-section {
    background: linear-gradient(135deg, var(--soft-green) 0%, rgba(179, 232, 202, 0.3) 100%);
    border-left: 5px solid var(--turquoise);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--turquoise);
    opacity: 0.3;
    font-family: serif;
}