/* ============================================
   CSS Variables & Theme Configuration
   ============================================ */
:root {
    /* Tetrad Color Scheme */
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --tertiary-color: #F7B801;
    --quaternary-color: #6A4C93;
    
    /* Accent Colors */
    --accent-light: #FFE5D9;
    --accent-dark: #1A1A2E;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #CCCCCC;
    --dark-gray: #333333;
    --black: #1A1A1A;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--tertiary-color) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--quaternary-color) 100%);
    --gradient-accent: linear-gradient(135deg, var(--quaternary-color) 0%, var(--primary-color) 100%);
    --gradient-overlay: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    
    /* Typography */
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Rubik', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-medium: 0.4s ease-in-out;
    --transition-slow: 0.6s ease-in-out;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* ============================================
   Global Styles & Reset
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h5 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--dark-gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   Button Styles (GLOBAL)
   ============================================ */
.button, .btn, button, input[type='submit'] {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button::before, .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.button:hover::before, .btn:hover::before {
    width: 300px;
    height: 300px;
}

.button.is-primary, .btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.button.is-primary:hover, .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.button.is-light {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.button.is-light:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

.button.is-text {
    background: transparent;
    color: var(--primary-color);
    padding: 0;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.button.is-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-medium);
}

.button.is-text:hover::after {
    width: 100%;
}

.btn-animated {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-medium);
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-sm) 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-item {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all var(--transition-fast);
    position: relative;
}

.navbar-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: width var(--transition-medium);
}

.navbar-item:hover {
    color: var(--primary-color);
}

.navbar-item:hover::after {
    width: 80%;
}

.navbar-burger {
    color: var(--primary-color);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
    z-index: 1;
}

.hero-body {
    position: relative;
    z-index: 2;
    padding: var(--spacing-xl);
}

.hero-title {
    color: var(--white) !important;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    margin-bottom: var(--spacing-md);
    animation: slideInDown 1s ease-out;
}

.hero-subtitle {
    color: var(--white) !important;
    font-family: var(--font-body);
    font-weight: 300;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.3);
    margin-bottom: var(--spacing-md);
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-description {
    color: var(--white) !important;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    animation: fadeIn 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   Section Titles
   ============================================ */
.section-title {
    text-align: center;
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    background: var(--light-gray);
    padding: var(--spacing-xl) 0;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    text-align: justify;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    margin: 0 auto;
}

.image-container:hover img {
    transform: scale(1.1);
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    background: var(--white);
    padding: var(--spacing-xl) 0;
}

.service-card {
    height: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card .card-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card .card-image .image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
}

.service-card .card-content {
    padding: var(--spacing-md);
    text-align: center;
}

.service-card .title {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ============================================
   Accolades Section
   ============================================ */
.accolades-section {
    background: var(--gradient-secondary);
    padding: var(--spacing-xl) 0;
    color: var(--white);
}

.accolades-section .section-title {
    color: var(--white);
}

.accolades-section .section-title::after {
    background: var(--white);
}

.accolade-item {
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    transition: all var(--transition-medium);
}

.accolade-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.accolade-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.accolade-item .title {
    color: var(--white);
    margin-bottom: var(--spacing-xs);
}

.accolade-item p {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   Resources Section
   ============================================ */
.resources-section {
    background: var(--light-gray);
    padding: var(--spacing-xl) 0;
}

.resource-card {
    height: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.resource-card .card-content {
    padding: var(--spacing-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.resource-card .title a {
    color: var(--secondary-color);
    transition: color var(--transition-fast);
}

.resource-card .title a:hover {
    color: var(--primary-color);
}

.resource-card p {
    flex-grow: 1;
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing-section {
    background: var(--white);
    padding: var(--spacing-xl) 0;
}

.pricing-toggle-container {
    margin-bottom: var(--spacing-lg);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.toggle-label {
    font-weight: 600;
    color: var(--dark-gray);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--medium-gray);
    transition: var(--transition-fast);
    border-radius: 30px;
}

.slider::before {
    position: absolute;
    content: '';
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background: var(--white);
    transition: var(--transition-fast);
    border-radius: 50%;
}

input:checked + .slider {
    background: var(--primary-color);
}

input:checked + .slider::before {
    transform: translateX(30px);
}

.pricing-card {
    height: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.featured-card {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.pricing-card .card-content {
    padding: var(--spacing-lg);
    text-align: center;
    width: 100%;
}

.pricing-amount {
    margin: var(--spacing-md) 0;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 1.2rem;
    color: var(--dark-gray);
}

.pricing-features {
    list-style: none;
    margin: var(--spacing-lg) 0;
    text-align: left;
}

.pricing-features li {
    padding: var(--spacing-xs) 0;
    color: var(--dark-gray);
    font-size: 1rem;
}

/* ============================================
   Workshops Section
   ============================================ */
.workshops-section {
    background: var(--light-gray);
    padding: var(--spacing-xl) 0;
}

.workshop-card {
    height: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.workshop-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.workshop-card .card-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.workshop-card .card-image .image-container {
    width: 100%;
    height: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workshop-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
}

.workshop-card .card-content {
    padding: var(--spacing-md);
    text-align: center;
}

.workshop-card .title {
    color: var(--quaternary-color);
    margin-bottom: var(--spacing-sm);
}

.workshop-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

/* ============================================
   Blog Section
   ============================================ */
.blog-section {
    background: var(--white);
    padding: var(--spacing-xl) 0;
}

.blog-card {
    height: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-medium);
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-card .card-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-card .card-image .image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
}

.blog-card .card-content {
    padding: var(--spacing-md);
    text-align: left;
}

.blog-date {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

.blog-card .title {
    color: var(--black);
    margin-bottom: var(--spacing-sm);
}

.blog-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.blog-card .button.is-text {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.blog-card .button.is-text:hover {
    gap: var(--spacing-sm);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    background: var(--light-gray);
    padding: var(--spacing-xl) 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: var(--spacing-md);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: var(--accent-light);
}

.faq-question .title {
    margin: 0;
    color: var(--black);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform var(--transition-medium);
}

.faq-item.is-active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.is-active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--dark-gray);
    line-height: 1.8;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    background: var(--white);
    padding: var(--spacing-xl) 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 50px;
    text-align: center;
}

.contact-details h3 {
    color: var(--black);
    margin-bottom: var(--spacing-xs);
}

.contact-details p {
    color: var(--dark-gray);
    line-height: 1.7;
}

.contact-details a {
    color: var(--primary-color);
    transition: color var(--transition-fast);
}

.contact-details a:hover {
    color: var(--secondary-color);
}

.contact-form {
    background: var(--light-gray);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.field {
    margin-bottom: var(--spacing-md);
}

.label {
    display: block;
    font-weight: 600;
    color: var(--black);
    margin-bottom: var(--spacing-xs);
}

.input, .textarea, .select select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--white);
}

.input:focus, .textarea:focus, .select select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.select {
    position: relative;
    width: 100%;
}

.select::after {
    content: '▼';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--primary-color);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--black);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-title {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-size: 1.3rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: all var(--transition-fast);
    display: inline-block;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xs);
}

.footer-contact a {
    color: var(--primary-color);
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--tertiary-color);
}

.footer-bottom {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   Success Page
   ============================================ */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
}

.success-content {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   Privacy & Terms Pages
   ============================================ */
.privacy-content, .terms-content {
    padding-top: 120px;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: var(--spacing-xl);
}

.privacy-content h2, .terms-content h2 {
    color: var(--secondary-color);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.privacy-content p, .terms-content p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    text-align: justify;
}

.privacy-content ul, .terms-content ul {
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.privacy-content li, .terms-content li {
    margin-bottom: var(--spacing-xs);
    line-height: 1.7;
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }

.pt-sm { padding-top: var(--spacing-sm); }
.pt-md { padding-top: var(--spacing-md); }
.pt-lg { padding-top: var(--spacing-lg); }

.pb-sm { padding-bottom: var(--spacing-sm); }
.pb-md { padding-bottom: var(--spacing-md); }
.pb-lg { padding-bottom: var(--spacing-lg); }

/* ============================================
   Responsive Design
   ============================================ */
@media screen and (max-width: 1024px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .button {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-lg: 2rem;
        --spacing-md: 1.5rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .navbar-menu {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-md);
    }
    
    .hero-section {
        background-attachment: scroll;
    }
    
    .pricing-toggle {
        flex-direction: column;
    }
    
    .featured-card {
        transform: scale(1);
    }
    
    .contact-info {
        margin-bottom: var(--spacing-lg);
    }
    
    .faq-question .title {
        font-size: 1.1rem;
    }
    
    .service-card .card-image .image-container,
    .workshop-card .card-image .image-container {
        height: 200px;
    }
    
    .blog-card .card-image .image-container {
        height: 180px;
    }
}

@media screen and (max-width: 480px) {
    .button, .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .contact-icon {
        font-size: 1.5rem;
        min-width: 40px;
    }
    
    .accolade-icon {
        font-size: 2.5rem;
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .navbar, .footer, .hero-buttons, .contact-form {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        text-decoration: underline;
    }
}

/* ============================================
   Animations for Hand-Drawn Style
   ============================================ */
@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

.card, .pricing-card, .service-card, .workshop-card, .blog-card {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}