* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Wellness Color Palette */
    --primary-sage: #9CAF88;
    --primary-warm: #D4A574;
    --accent-coral: #E8A87C;
    --neutral-cream: #FAF7F2;
    --neutral-stone: #E6DDD4;
    --text-charcoal: #4A4A4A;
    --text-sage-dark: #6B7A5A;
    --pure-white: #FFFFFF;
    
    /* Legacy variables for compatibility */
    --primary-color: #6B7A5A;
    --secondary-color: #9CAF88;
    --accent-color: #D4A574;
    --text-dark: #4A4A4A;
    --text-light: #4A4A4A;
    --bg-light: #FAF7F2;
    --bg-cream: #FAF7F2;
    --white: #FFFFFF;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, rgba(156, 175, 136, 0.3), rgba(212, 165, 116, 0.3));
    --gradient-card: linear-gradient(145deg, #FAF7F2 0%, #E6DDD4 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.02em;
    color: var(--text-charcoal);
    background: var(--neutral-cream);
}

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

/* Navigation */
/* Premium Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.03em;
    color: var(--text-sage-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.navbar {
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9998;
    height: 70px;
    overflow: visible;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.2rem 25px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    position: relative;
}

.nav-menu {
    position: fixed;
    right: 25px;
    top: 35px;
    z-index: 99999;
    display: flex;
    gap: 2rem;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    position: fixed;
    left: 25px;
    top: 10px;
    z-index: 1001;
}

.nav-logo img {
    height: 120px;
    width: auto;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-logo img:hover {
    opacity: 0.8;
}


.nav-link {
    text-decoration: none;
    color: var(--text-charcoal);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-sage), var(--primary-warm));
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--text-sage-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: 
        var(--gradient-hero),
        url('530233520_1289654096501996_6690856320475367594_n.jpg') center/cover no-repeat;
    color: var(--pure-white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--pure-white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

.hero-content p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    line-height: 1.6;
    color: var(--pure-white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    margin-bottom: 3rem;
    animation: fadeInUp 1.4s ease-out;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-sage), var(--primary-warm));
    color: var(--pure-white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.025em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 
        0 4px 15px rgba(156, 175, 136, 0.3),
        0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(156, 175, 136, 0.4),
        0 4px 15px rgba(0,0,0,0.15);
}

/* Registration Section */
.registration {
    padding: 80px 0;
    background: var(--bg-cream);
    text-align: center;
}

.registration h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.registration .btn-primary {
    margin-bottom: 3rem;
}

.info-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: left;
}

.info-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.info-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-text a:hover {
    text-decoration: underline;
}

.open-card {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.open-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.open-card p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.open-card .price {
    font-size: 1.3rem;
    color: var(--primary-color);
    text-align: center;
    margin-top: 2rem;
}

/* Classes Section */
.classes {
    padding: 80px 0;
}

.classes h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.class-card {
    background: var(--gradient-card);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 
        0 10px 30px rgba(74, 74, 74, 0.08),
        0 1px 8px rgba(74, 74, 74, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(156, 175, 136, 0.1);
    overflow: hidden;
}

.class-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-sage), var(--accent-coral), var(--primary-warm));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.class-card:hover::before {
    opacity: 1;
}

.class-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(74, 74, 74, 0.12),
        0 8px 16px rgba(74, 74, 74, 0.08);
}

.class-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.class-duration {
    display: inline-block;
    background: var(--bg-light);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Schedule Section */
.schedule {
    padding: 80px 0;
    background: var(--bg-light);
}

.schedule h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.schedule-image {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.schedule-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Instructors Section */
.instructors {
    padding: 80px 0;
}

.instructors h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.instructor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.instructor-card {
    text-align: center;
}

.instructor-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(156, 175, 136, 0.2),
        0 0 0 4px var(--neutral-cream),
        0 0 0 8px rgba(156, 175, 136, 0.1);
    transition: all 0.3s ease;
}

.instructor-image:hover {
    transform: scale(1.05);
    box-shadow: 
        0 15px 40px rgba(156, 175, 136, 0.3),
        0 0 0 4px var(--neutral-cream),
        0 0 0 12px rgba(156, 175, 136, 0.15);
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.instructor-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-cream);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.contact-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-item h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-charcoal);
}

.contact-item a {
    color: var(--primary-sage);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-warm);
    text-decoration: underline;
}

.contact-info h3,
.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.9rem;
}

.contact-info {
    background: var(--gradient-card);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(74, 74, 74, 0.08),
        0 1px 8px rgba(74, 74, 74, 0.06);
    border: 1px solid rgba(156, 175, 136, 0.1);
    height: fit-content;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info p {
    margin-bottom: 2rem;
    color: var(--text-charcoal);
    font-size: 1.15rem;
    line-height: 1.7;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info strong {
    color: var(--text-sage-dark);
    font-weight: 600;
}

.contact-info a {
    color: var(--primary-sage);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-warm);
    text-decoration: underline;
}

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

.contact-form label {
    display: block;
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    padding: 16px 20px;
    border: 2px solid var(--neutral-stone);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--pure-white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(74, 74, 74, 0.5);
    font-weight: 400;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-sage);
    box-shadow: 0 0 0 3px rgba(156, 175, 136, 0.1);
    transform: translateY(-2px);
}

/* Form messages animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

.footer a {
    color: var(--primary-sage);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-warm);
    text-decoration: underline;
}

/* Teachers Page */
.teachers-page {
    padding: 100px 0 80px;
    background: var(--bg-cream);
}

.teachers-page h1 {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.teacher-detail {
    background: #FFFFFF;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.teacher-detail h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.teacher-content p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.1rem;
}

.teacher-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(156, 175, 136, 0.2),
        0 0 0 4px var(--neutral-cream),
        0 0 0 8px rgba(156, 175, 136, 0.1);
    transition: all 0.3s ease;
}

.teacher-photo:hover {
    transform: scale(1.05);
    box-shadow: 
        0 15px 40px rgba(156, 175, 136, 0.3),
        0 0 0 4px var(--neutral-cream),
        0 0 0 12px rgba(156, 175, 136, 0.15);
}

.teacher-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.teacher-photo:hover img {
    transform: scale(1.1);
}

.teacher-photo img[src="Vilborg-Anna-1.jpg"] {
    object-position: center top;
}

.teacher-photo img[src="Tinna.jpg"] {
    object-position: center top;
}

.instructor-image img[src="Vilborg-Anna-1.jpg"] {
    object-position: center top;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

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

/* Shopping Page */
.shopping-page {
    padding: 100px 0 80px;
    background: var(--bg-cream);
}

.shopping-page h1 {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-sage-dark);
    margin-bottom: 4rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    position: relative;
}

.shopping-page h1::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-sage), var(--primary-warm));
    border-radius: 2px;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto 4rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(74, 74, 74, 0.08);
    border: 1px solid rgba(156, 175, 136, 0.1);
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-charcoal);
    margin-bottom: 1.5rem;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

.intro-text a {
    color: var(--primary-sage);
    text-decoration: none;
    font-weight: 500;
}

.intro-text a:hover {
    text-decoration: underline;
}

.love-message {
    text-align: center;
    font-weight: 500;
    color: var(--text-sage-dark);
    font-style: italic;
}

.faq-section {
    background: linear-gradient(145deg, #FFFFFF 0%, var(--neutral-cream) 100%);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 
        0 15px 35px rgba(74, 74, 74, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(156, 175, 136, 0.1);
    margin-top: 4rem;
}

.faq-section h2 {
    text-align: center;
    color: var(--text-sage-dark);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 400;
    position: relative;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-sage), var(--primary-warm));
    border-radius: 2px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.7);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(156, 175, 136, 0.1);
}

.faq-item h3 {
    color: var(--text-sage-dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-charcoal);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.faq-item p:last-child {
    margin-bottom: 0;
}

.highlight-price {
    background: var(--primary-sage);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
}

.highlight-price strong {
    font-size: 1.3rem;
    font-weight: 700;
}

/* Homepage FAQ Section */
.faq-homepage {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--neutral-cream) 0%, rgba(156, 175, 136, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.faq-homepage::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(156, 175, 136, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.faq-homepage::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.faq-homepage h2 {
    text-align: center;
    color: var(--text-sage-dark);
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    font-weight: 400;
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
}

.faq-homepage h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-sage), var(--primary-warm));
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(156, 175, 136, 0.3);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.faq-accordion-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(156, 175, 136, 0.15);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 25px rgba(74, 74, 74, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-accordion-item:hover {
    border-color: rgba(156, 175, 136, 0.25);
    box-shadow: 
        0 15px 35px rgba(74, 74, 74, 0.12),
        0 5px 15px rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    padding: 2rem 2.5rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(156, 175, 136, 0.05);
}

.faq-question h3 {
    color: var(--text-sage-dark);
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    color: var(--primary-sage);
    font-size: 1.8rem;
    font-weight: 300;
    transition: all 0.3s ease;
    line-height: 1;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-sage), var(--primary-warm));
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 400;
    box-shadow: 0 2px 8px rgba(156, 175, 136, 0.3);
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--primary-warm), var(--accent-coral));
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.faq-answer-content {
    padding: 0 2.5rem 2rem 2.5rem;
    border-top: 1px solid rgba(156, 175, 136, 0.1);
    margin-top: -1px;
}

.faq-answer-content p {
    color: var(--text-charcoal);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content a {
    color: var(--primary-sage);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.faq-answer-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-warm);
    transition: width 0.3s ease;
}

.faq-answer-content a:hover {
    color: var(--primary-warm);
}

.faq-answer-content a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.2rem;
    }
}

.faq-homepage .love-message {
    text-align: center;
    font-weight: 500;
    color: var(--text-sage-dark);
    font-size: 1.4rem;
    font-style: italic;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(74, 74, 74, 0.08);
    border: 1px solid rgba(156, 175, 136, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.pricing-card {
    background: var(--gradient-card);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 
        0 10px 30px rgba(74, 74, 74, 0.08),
        0 1px 8px rgba(74, 74, 74, 0.06);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(156, 175, 136, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(74, 74, 74, 0.12),
        0 8px 16px rgba(74, 74, 74, 0.08);
}

.pricing-card.featured {
    background: var(--gradient-card);
    border: 1px solid rgba(156, 175, 136, 0.1);
    box-shadow: 
        0 10px 30px rgba(74, 74, 74, 0.08),
        0 1px 8px rgba(74, 74, 74, 0.06);
    transform: none;
    z-index: auto;
}

.pricing-card.featured::before {
    display: none;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.price-amount {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-sage), var(--primary-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1rem;
    color: var(--text-charcoal);
    font-weight: 400;
    opacity: 0.8;
}

.pricing-card h3 {
    color: var(--text-sage-dark);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
    min-height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card p {
    color: var(--text-charcoal);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
    flex-grow: 1;
    opacity: 0.85;
}

.pricing-btn {
    width: 100%;
    padding: 18px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
    margin-top: auto;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, var(--primary-sage), var(--primary-warm));
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(156, 175, 136, 0.2);
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156, 175, 136, 0.3);
}

.pricing-card.featured .pricing-btn {
    background: linear-gradient(135deg, var(--primary-sage), var(--primary-warm));
    font-size: 1.05rem;
    padding: 18px 24px;
}

.terms-section {
    background: linear-gradient(145deg, #FFFFFF 0%, var(--neutral-cream) 100%);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 
        0 15px 35px rgba(74, 74, 74, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(156, 175, 136, 0.1);
    position: relative;
    overflow: hidden;
}

.terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(156, 175, 136, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.terms-section h2 {
    text-align: center;
    color: var(--text-sage-dark);
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.terms-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-sage), var(--primary-warm));
    border-radius: 2px;
}

.terms-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(156, 175, 136, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.terms-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 74, 74, 0.08);
    background: rgba(255, 255, 255, 0.9);
}

.terms-item:last-child {
    margin-bottom: 0;
}

.terms-item h3 {
    color: var(--text-sage-dark);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.terms-item h3::before {
    content: '→';
    color: var(--primary-sage);
    font-size: 1.2rem;
    font-weight: 400;
}

.terms-item p {
    color: var(--text-dark);
    line-height: 1.8;
}

.terms-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.terms-item a:hover {
    text-decoration: underline;
}

/* Programs Page */
.programs-page {
    padding: 100px 0 80px;
    background: var(--bg-cream);
}

.programs-page h1 {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.program-section {
    margin-bottom: 4rem;
}

.program-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 1rem;
}

.program-intro {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.program-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

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

.program-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.program-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.program-card.featured::before {
    content: "Karlar!";
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: #FFFFFF;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
}

.program-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.program-card p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.program-details {
    background: var(--bg-cream);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.program-details strong {
    color: var(--primary-color);
}

/* About Detailed Section */
.about-detailed {
    padding: 80px 0;
    background: #FFFFFF;
}

.about-detailed h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-cream);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.about-content p.highlight {
    background: var(--primary-color);
    color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
}

.about-content p:last-child:not(.highlight) {
    margin-bottom: 0;
}

/* About Page */
.about-page {
    padding: 100px 0 80px;
    background: var(--bg-cream);
}

.about-page h1 {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-sage-dark);
    margin-bottom: 4rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    position: relative;
}

.about-page h1::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-sage), var(--primary-warm));
    border-radius: 2px;
}

.about-full-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(74, 74, 74, 0.08);
    border: 1px solid rgba(156, 175, 136, 0.1);
}

.about-full-content p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    color: var(--text-charcoal);
}

.about-full-content p.highlight {
    background: linear-gradient(135deg, var(--primary-sage), var(--primary-warm));
    color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(156, 175, 136, 0.3);
}

/* Quick Subscribe Section */
.quick-subscribe {
    padding: 80px 0;
    background: #FFFFFF;
}

.quick-subscribe h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.subscribe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.subscribe-card {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.subscribe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.subscribe-card.featured {
    border: 3px solid var(--primary-color);
    background: #FFFFFF;
}

.subscribe-card.featured::before {
    content: "Vinsælast";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #FFFFFF;
    padding: 5px 20px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
}

.subscribe-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.subscribe-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.subscribe-card p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.subscribe-card .btn-primary {
    width: 100%;
    padding: 12px 20px;
}

/* Show More Button */
.btn-show-more {
    display: none;
    background: linear-gradient(135deg, var(--primary-sage), var(--primary-warm));
    color: var(--pure-white);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.025em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 
        0 4px 15px rgba(156, 175, 136, 0.3),
        0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 2rem auto 0;
    width: fit-content;
}

.btn-show-more:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(156, 175, 136, 0.4),
        0 4px 15px rgba(0,0,0,0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .class-grid .class-card {
        display: none;
    }
    
    .class-grid .class-card:nth-child(1),
    .class-grid .class-card:nth-child(2),
    .class-grid .class-card:nth-child(3) {
        display: block;
    }
    
    .class-grid.show-all .class-card {
        display: block;
    }
    
    .btn-show-more {
        display: block;
    }
    
    .btn-show-more.hide {
        display: none;
    }
    
    .class-grid {
        margin-bottom: 0;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        display: none;
        z-index: 99999 !important;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .schedule-table {
        grid-template-columns: 1fr;
    }
}


/* Force desktop navigation to always be visible */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        right: 40px !important;
        top: 35px !important;
        background: transparent !important;
        padding: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        z-index: 99999 !important;
        gap: 2.5rem !important;
        flex-direction: row !important;
        width: auto !important;
    }
    
    .nav-toggle {
        display: none !important;
    }
    
    .nav-logo {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        left: 25px !important;
        top: 0px !important;
        z-index: 99999 !important;
    }
    
    .nav-logo img {
        height: 130px !important;
        width: auto !important;
        display: block !important;
    }
}

.nav-menu .nav-link {
    color: white !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    text-decoration: none !important;
    padding: 0.5rem 0 !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 99999 !important;
    background: transparent !important;
    border: none !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    letter-spacing: 0.05em !important;
}

.nav-menu .nav-link:hover {
    color: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-2px) !important;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4) !important;
}

.nav-menu .nav-link.active {
    color: white !important;
    border-bottom: 2px solid white !important;
    padding-bottom: 3px !important;
}

/* KAP Page Styles */
.kap-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--neutral-cream) 0%, rgba(156, 175, 136, 0.05) 100%);
    min-height: 100vh;
}

.kap-page h1 {
    text-align: center;
    color: var(--text-sage-dark);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    position: relative;
}

.kap-page h1::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-sage), var(--primary-warm));
    border-radius: 2px;
}

.kap-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(74, 74, 74, 0.08);
    border: 1px solid rgba(156, 175, 136, 0.1);
}

.kap-intro p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-charcoal);
    margin-bottom: 1.5rem;
}

.kap-intro p:first-child {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-sage-dark);
}

.kap-intro p:last-child {
    margin-bottom: 0;
}

.kap-image-section {
    max-width: 1200px;
    margin: 4rem auto;
    text-align: center;
}

.kap-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 16px;
    box-shadow: 
        0 20px 40px rgba(74, 74, 74, 0.12),
        0 8px 16px rgba(74, 74, 74, 0.06);
    transition: transform 0.3s ease;
}

.kap-image:hover {
    transform: scale(1.02);
}

.kap-location {
    text-align: center;
    margin: 3rem auto;
    max-width: 800px;
}

.kap-location p {
    font-size: 1.3rem;
    color: var(--text-sage-dark);
    font-weight: 500;
    background: linear-gradient(145deg, #FFFFFF 0%, var(--neutral-cream) 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(74, 74, 74, 0.06);
}

.kap-kraftur {
    max-width: 900px;
    margin: 4rem auto;
    background: white;
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(74, 74, 74, 0.08);
    border: 1px solid rgba(156, 175, 136, 0.1);
}

.kap-kraftur h2 {
    color: var(--text-sage-dark);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.kap-kraftur p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-charcoal);
    margin-bottom: 2rem;
}

.kap-schedule {
    background: var(--gradient-card);
    padding: 2.5rem;
    border-radius: 16px;
    margin-top: 3rem;
    border: 1px solid rgba(156, 175, 136, 0.15);
}

.kap-schedule h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.kap-schedule p {
    font-size: 1.2rem;
    color: var(--text-charcoal);
    font-weight: 500;
}

.kap-contact {
    text-align: center;
    margin: 4rem auto;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(74, 74, 74, 0.06);
}

.kap-contact h3 {
    color: var(--text-sage-dark);
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.kap-contact p {
    font-size: 1.2rem;
    color: var(--text-charcoal);
    margin-bottom: 1rem;
}

.kap-contact strong {
    color: var(--primary-color);
    font-weight: 600;
}

.kap-limited {
    background: linear-gradient(135deg, var(--primary-sage), var(--primary-warm));
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    display: inline-block;
    margin-top: 2rem;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(156, 175, 136, 0.3);
    animation: pulse 2s infinite;
}

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

.kap-registration {
    max-width: 900px;
    margin: 4rem auto;
    background: var(--gradient-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(156, 175, 136, 0.1);
}

.kap-registration p {
    font-size: 1.15rem;
    color: var(--text-charcoal);
    margin-bottom: 1rem;
    text-align: center;
}

.kap-register-link {
    color: var(--primary-sage);
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.kap-register-link:hover {
    color: var(--primary-warm);
    text-decoration: underline;
}

.kap-payment {
    max-width: 1000px;
    margin: 4rem auto;
    text-align: center;
}

.kap-payment h2 {
    color: var(--text-sage-dark);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.kap-payment > p {
    font-size: 1.15rem;
    color: var(--text-charcoal);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.kap-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.kap-price-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(74, 74, 74, 0.08),
        0 1px 8px rgba(74, 74, 74, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(156, 175, 136, 0.1);
}

.kap-price-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(74, 74, 74, 0.12),
        0 8px 16px rgba(74, 74, 74, 0.08);
    border-color: var(--primary-sage);
}

.kap-price-card h3 {
    color: var(--text-sage-dark);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.kap-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-sage), var(--primary-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kap-price-card .btn-primary {
    width: 100%;
    padding: 18px 24px;
    font-size: 1.05rem;
}

.kap-story {
    max-width: 900px;
    margin: 5rem auto 0;
    background: white;
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(74, 74, 74, 0.08);
    border: 1px solid rgba(156, 175, 136, 0.1);
}

.kap-story h2 {
    color: var(--text-sage-dark);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.kap-story blockquote {
    border-left: 4px solid var(--primary-sage);
    padding-left: 2rem;
    margin: 0;
}

.kap-story blockquote p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-charcoal);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.kap-story blockquote p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for KAP page */
@media (max-width: 768px) {
    .kap-page {
        padding: 100px 0 60px;
    }
    
    .kap-intro,
    .kap-kraftur,
    .kap-story {
        padding: 2rem;
    }
    
    .kap-pricing {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 350px;
    }
    
    .kap-price {
        font-size: 2rem;
    }
    
    .kap-story h2 {
        font-size: 1.5rem;
    }
}

