* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #4A6741;
    --primary-dark: #365232;
    --primary-light: #6B8F61;
    --secondary: #C9A84C;
    --secondary-light: #E0C96E;
    --accent: #8B6D42;
    --bg: #FDFAF3;
    --bg-alt: #F0EBE0;
    --bg-dark: #2C3326;
    --text: #2B3025;
    --text-light: #5C6356;
    --text-muted: #8A8D86;
    --white: #FFFFFF;
    --border: #DDD5C5;
    --shadow: 0 2px 16px rgba(43, 48, 37, 0.07);
    --shadow-lg: 0 8px 32px rgba(43, 48, 37, 0.12);
    --radius: 8px;
    --radius-lg: 14px;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 14px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.65;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

main {
    flex: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--secondary);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--text);
}

h1 {
    font-size: 2.2rem;
    font-weight: 700;
}

h2 {
    font-size: 1.7rem;
}

h3 {
    font-size: 1.3rem;
}

h4 {
    font-size: 1.05rem;
}

p {
    margin-bottom: 0.85rem;
}

.container {
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section {
    padding: 3rem 0;
}

.bg-alt {
    background-color: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-light);
    max-width: 540px;
    margin: 0 auto;
    font-size: 0.9rem;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-gold {
    background-color: var(--secondary);
    color: var(--bg-dark);
}

.btn-gold:hover {
    background-color: var(--secondary-light);
    color: var(--bg-dark);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(253, 250, 243, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    padding: 0.75rem 1.25rem;
    max-width: 1060px;
    margin: 0 auto;
    position: relative;
}

.nav-group {
    display: flex;
    gap: 1.8rem;
}

.nav-group a {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0;
    position: relative;
}

.nav-group a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--secondary);
    transition: width var(--transition);
}

.nav-group a:hover::after,
.nav-group a.active::after {
    width: 100%;
}

.nav-group a:hover,
.nav-group a.active {
    color: var(--primary);
}

.header-logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.01em;
    white-space: nowrap;
    padding: 0 1.2rem;
    position: relative;
}

.header-logo::before,
.header-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 1px;
    background-color: var(--border);
}

.header-logo::before {
    left: -8px;
}

.header-logo::after {
    right: -8px;
}

.header-logo:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    color: var(--text);
    font-size: 1rem;
    transition: all var(--transition);
    position: absolute;
    right: 1.25rem;
    z-index: 1002;
}

.menu-toggle:hover,
.menu-toggle.active {
    border-color: var(--primary);
    color: var(--primary);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(44, 51, 38, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    text-align: center;
}

.mobile-nav a {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    padding: 0.7rem 0;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(16px);
}

.mobile-overlay.active .mobile-nav a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav a:nth-child(1) { transition-delay: 0.08s; }
.mobile-nav a:nth-child(2) { transition-delay: 0.14s; }
.mobile-nav a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav a:nth-child(4) { transition-delay: 0.26s; }

.mobile-nav a:hover {
    color: var(--secondary);
}

.hero {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    margin-bottom: 0.8rem;
    font-size: 2.4rem;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.3rem;
    max-width: 420px;
}

.hero-image {
    flex: 0 0 44%;
    max-width: 44%;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.page-banner {
    padding: 5.5rem 0 2rem;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.page-banner h1 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.4rem;
}

.page-banner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    max-width: 500px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.8rem;
    font-size: 0.78rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.breadcrumb span {
    color: var(--secondary);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.intro-grid img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.intro-text h2 {
    margin-bottom: 0.6rem;
}

.intro-text p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.workshop-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
}

.workshop-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.workshop-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.workshop-card-body {
    padding: 1.2rem;
}

.workshop-card-icon {
    width: 44px;
    height: 44px;
    background-color: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.7rem;
}

.workshop-card-body h3 {
    margin-bottom: 0.4rem;
    font-size: 1.15rem;
}

.workshop-card-body p {
    font-size: 0.83rem;
    color: var(--text-light);
    margin-bottom: 0.7rem;
}

.workshop-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.7rem;
    border-top: 1px solid var(--border);
}

.workshop-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.workshop-price span {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
}

.benefit-item {
    text-align: center;
    padding: 1.3rem 1rem;
    border-radius: var(--radius-lg);
    background-color: var(--white);
    border: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.benefit-item:hover {
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    font-size: 1.05rem;
}

.benefit-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.benefit-item p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
    counter-reset: step;
}

.step-item {
    position: relative;
    padding: 1.2rem;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    counter-increment: step;
}

.step-item::before {
    content: counter(step, decimal-leading-zero);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bg-alt);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.step-item h4 {
    margin-bottom: 0.25rem;
}

.step-item p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.testimonials-section {
    background-color: var(--bg-dark);
    color: var(--white);
}

.testimonials-section .section-header h2 {
    color: var(--white);
}

.testimonials-section .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-quote {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
    opacity: 0.5;
}

.testimonial-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.82);
    font-style: italic;
    margin-bottom: 0.8rem;
}

.testimonial-author {
    font-size: 0.78rem;
    color: var(--secondary);
    font-weight: 500;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    padding: 2.8rem 0;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 460px;
    margin: 0 auto 1.3rem;
    font-size: 0.9rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
}

.value-card {
    padding: 1.3rem;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
}

.value-card i {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.7rem;
    display: block;
}

.value-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.value-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
}

.team-member {
    text-align: center;
    padding: 1.3rem;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.team-member-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.7rem;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}

.team-member h3 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.team-member p {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 1.8rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.contact-form-wrapper h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form-wrapper h3 i {
    color: var(--primary);
    font-size: 1rem;
}

.form-group {
    margin-bottom: 0.9rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.55rem 0.75rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text);
    background-color: var(--bg);
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.45;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.1rem;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-alt);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 0.92rem;
    margin-bottom: 0.1rem;
}

.contact-info-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.map-section iframe {
    width: 100%;
    height: 260px;
    border: none;
    border-radius: var(--radius-lg);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    max-width: 560px;
    margin: 0 auto;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.82rem;
}

.hours-item span:first-child {
    font-weight: 500;
}

.hours-item span:last-child {
    color: var(--text-light);
}

.workshop-listing {
    padding: 1.3rem;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    display: flex;
    gap: 1.3rem;
    align-items: center;
    transition: box-shadow var(--transition);
}

.workshop-listing:hover {
    box-shadow: var(--shadow);
}

.workshop-listing-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.workshop-listing-content {
    flex: 1;
}

.workshop-listing-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.workshop-listing-content p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 0.35rem;
}

.workshop-listing-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.workshop-listing-details span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.workshop-listing-price {
    text-align: right;
    flex-shrink: 0;
}

.workshop-listing-price .price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.workshop-listing-price .price-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.workshop-listing-price .btn {
    margin-top: 0.45rem;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.expect-card {
    display: flex;
    gap: 0.9rem;
    padding: 1.2rem;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.expect-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--bg-alt);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.expect-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.expect-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.workshop-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    padding: 1.3rem;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.workshop-detail img {
    border-radius: var(--radius);
}

.workshop-detail-info h3 {
    margin-bottom: 0.4rem;
}

.workshop-detail-info p {
    font-size: 0.88rem;
    color: var(--text-light);
}

.workshop-detail-list {
    padding: 0;
    margin: 0.7rem 0;
}

.workshop-detail-list li {
    font-size: 0.82rem;
    padding: 0.25rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.workshop-detail-list li i {
    color: var(--primary);
    font-size: 0.7rem;
}

.faq-list {
    max-width: 680px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 0;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 0.25rem 0;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 0.7rem;
    transition: transform var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-top: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.fullpage-main {
    display: flex;
    flex-direction: column;
}

.fullpage-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 1.25rem 3rem;
    flex: 1;
}

.fullpage-message .msg-icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.fullpage-message h1 {
    margin-bottom: 0.6rem;
}

.fullpage-message p {
    color: var(--text-light);
    max-width: 420px;
    margin: 0 auto 1.3rem;
    font-size: 0.9rem;
}

.error-code {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 700;
    color: var(--border);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.policy-content {
    padding: 1.5rem 0 2.5rem;
}

.policy-content h2 {
    font-size: 1.4rem;
    margin: 1.8rem 0 0.6rem;
}

.policy-content h3 {
    font-size: 1.1rem;
    margin: 1.3rem 0 0.5rem;
}

.policy-content p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

.policy-content ul {
    padding-left: 1.4rem;
    margin-bottom: 0.9rem;
}

.policy-content ul li {
    list-style: disc;
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 0.15rem 0;
    line-height: 1.6;
}

.policy-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.3rem;
}

.site-footer {
    background-color: var(--bg-dark);
    padding: 1.2rem 0;
}

.footer-inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.footer-links a {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    padding: 0.9rem 1.25rem;
    z-index: 1100;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.privacy-popup.active {
    transform: translateY(0);
}

.popup-inner {
    max-width: 1060px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.popup-inner p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    flex: 1;
}

.popup-inner p a {
    color: var(--secondary);
    text-decoration: underline;
}

.popup-buttons {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.popup-buttons button {
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

.popup-accept {
    background-color: var(--secondary);
    color: var(--bg-dark);
}

.popup-accept:hover {
    background-color: var(--secondary-light);
}

.popup-decline {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.popup-decline:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .nav-group {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-inner {
        justify-content: space-between;
    }

    .header-logo::before,
    .header-logo::after {
        display: none;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        flex: none;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }

    .workshop-cards,
    .benefits-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid,
    .intro-grid,
    .contact-grid,
    .expect-grid,
    .workshop-detail {
        grid-template-columns: 1fr;
    }

    .workshop-listing {
        flex-direction: column;
        align-items: flex-start;
    }

    .workshop-listing-price {
        text-align: left;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .popup-inner {
        flex-direction: column;
        text-align: center;
    }

    .section {
        padding: 2.2rem 0;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 5rem 0 2rem;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .page-banner {
        padding: 4.8rem 0 1.8rem;
    }

    .fullpage-message {
        padding: 5rem 1rem 2rem;
    }

    .error-code {
        font-size: 4rem;
    }
}

@media (max-width: 320px) {
    html {
        font-size: 12px;
    }

    .container {
        padding: 0 0.8rem;
    }

    .header-inner {
        padding: 0.6rem 0.8rem;
    }

    .header-logo {
        font-size: 1rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.78rem;
    }

    .contact-form-wrapper {
        padding: 1rem;
    }

    .menu-toggle {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
        right: 0.8rem;
    }
}
