/* ==== BASE STYLES ==== */
:root {
    /* Main colors */
    --primary-color: #4CAF50;
    --primary-dark: #388E3C;
    --primary-light: #C8E6C9;
    --secondary-color: #8BC34A;
    --secondary-dark: #689F38;
    --secondary-light: #DCEDC8;
    
    /* Neutral colors */
    --text-dark: #263238;
    --text-medium: #546E7A;
    --text-light: #B0BEC5;
    --background-light: #FFFFFF;
    --background-grey: #F5F7FA;
    --background-dark: #2A3B47;
    
    /* Accent colors */
    --accent-color: #FF6B6B;
    --accent-dark: #E53935;
    --success-color: #66BB6A;
    --warning-color: #FFC107;
    --info-color: #29B6F6;
    
    /* Typography */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Poppins', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --section-spacing: 100px;
    --element-spacing: 20px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: var(--body-font);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: 1.6rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.8rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.highlight {
    color: var(--primary-color);
}

/* Button styles */
.primary-btn, .secondary-btn, .pricing-btn, .submit-btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 1.6rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Section styles */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.section-tag {
    display: inline-block;
    padding: 0.6rem 1.6rem;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: var(--border-radius-sm);
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
    letter-spacing: 1px;
}

.section-description {
    font-size: 1.8rem;
    color: var(--text-medium);
    max-width: 80%;
    margin: 0 auto;
}

/* ==== HEADER STYLES ==== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: all var(--transition-normal);
    padding: 2rem 0;
}

.main-header.scrolled {
    background-color: white;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    width: 180px;
}

.logo img {
    width: 100%;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: color var(--transition-normal);
}

.nav-link:hover {
    color: var(--primary-color);
}

.kontakt-btn {
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius-md);
    margin-left: 1rem;
}

.kontakt-btn:hover {
    background-color: var(--primary-dark);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 3rem;
    height: 2.4rem;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    position: absolute;
    left: 0;
    transition: all var(--transition-normal);
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span:nth-child(3) {
    bottom: 0;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
}

/* ==== HERO SECTION ==== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 12rem 0 6rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 55%;
}

.hero-image {
    flex: 1;
    padding-left: 4rem;
    position: relative;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 92%;
    height: 92%;
    border: 3px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    top: -2rem;
    right: -2rem;
    z-index: -1;
}

.hero h1 {
    margin-bottom: 2rem;
    font-size: 5.6rem;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.hero-cta {
    display: flex;
    gap: 2rem;
}

.hero-shape {
    position: absolute;
    bottom: -10%;
    left: 0;
    width: 100%;
    height: 20%;
    background-color: white;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
    z-index: 1;
}

/* ==== OM KURSET SECTION ==== */
.om-kurset {
    padding: var(--section-spacing) 0;
    background-color: var(--background-light);
}

.om-kurset-content {
    display: flex;
    gap: 6rem;
    align-items: center;
}

.om-kurset-image {
    flex: 1;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.om-kurset-image img {
    border-radius: var(--border-radius-lg);
    transition: transform var(--transition-slow);
}

.om-kurset-image:hover img {
    transform: scale(1.05);
}

.om-kurset-text {
    flex: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 3rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1.6rem;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: var(--primary-light);
    border-radius: 50%;
    margin-right: 1.6rem;
    color: var(--primary-dark);
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
}

/* ==== FORDELE SECTION ==== */
.fordele {
    padding: var(--section-spacing) 0;
    background-color: var(--background-grey);
}

.fordele-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.fordel-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.fordel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.fordel-icon {
    width: 6rem;
    height: 6rem;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--primary-dark);
}

.fordel-icon svg {
    width: 3rem;
    height: 3rem;
}

.fordel-card h3 {
    margin-bottom: 1.6rem;
    font-size: 2.2rem;
}

.fordel-card p {
    color: var(--text-medium);
}

/* ==== MODULER SECTION ==== */
.moduler {
    padding: var(--section-spacing) 0;
    background-color: var(--background-light);
}

.modul-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.modul-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 65px;
    height: 100%;
    width: 4px;
    background-color: var(--primary-light);
}

.modul {
    position: relative;
    margin-bottom: 6rem;
    display: flex;
}

.modul:last-child {
    margin-bottom: 0;
}

.modul-number {
    position: relative;
    width: 13rem;
    height: 13rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 3.2rem;
    font-weight: 700;
    z-index: 2;
}

.modul-content {
    flex: 1;
    padding-left: 4rem;
    padding-top: 2rem;
}

.modul-content h3 {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
    color: var(--primary-dark);
}

.modul-points {
    list-style-type: disc;
    margin-top: 2rem;
    color: var(--text-medium);
}

.modul-cta {
    text-align: center;
    margin-top: 6rem;
}

/* ==== RESULTATER SECTION ==== */
.resultater {
    padding: var(--section-spacing) 0;
    background-color: var(--background-grey);
}

.testimonial-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: flex;
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.testimonial-image {
    flex: 0 0 35%;
    position: relative;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
    padding: 4rem;
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
}

.testimonial-quote svg {
    width: 100%;
    height: 100%;
}

.testimonial-text {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 3rem;
}

.testimonial-author h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.testimonial-author p {
    color: var(--text-medium);
    font-size: 1.4rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    gap: 1rem;
}

.testimonial-prev, .testimonial-next {
    width: 5rem;
    height: 5rem;
    background-color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.testimonial-prev:hover, .testimonial-next:hover {
    background-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.testimonial-prev svg, .testimonial-next svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary-dark);
}

.results-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 8rem;
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 4rem 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 4.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-text {
    font-size: 1.6rem;
    color: var(--text-medium);
    max-width: 200px;
}

/* ==== PRISER SECTION ==== */
.priser {
    padding: var(--section-spacing) 0;
    background-color: var(--background-light);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 6rem;
}

.pricing-card {
    flex: 1;
    max-width: 350px;
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 4rem 3rem;
    position: relative;
    transition: all var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 1.4rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h3 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.price {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.price .amount {
    font-size: 4.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-description {
    color: var(--text-medium);
    font-size: 1.5rem;
    min-height: 6rem;
}

.pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 3rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--primary-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li svg {
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
    color: var(--primary-color);
}

.feature-disabled {
    color: var(--text-light);
}

.feature-disabled svg {
    color: var(--text-light) !important;
}

.pricing-btn {
    display: block;
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all var(--transition-normal);
}

.pricing-btn:hover {
    background-color: var(--primary-dark);
    color: white;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    padding: 3rem;
    border-radius: var(--border-radius-md);
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-icon {
    flex: 0 0 8rem;
    color: var(--primary-dark);
}

.guarantee-icon svg {
    width: 6rem;
    height: 6rem;
}

.guarantee-content {
    flex: 1;
    padding-left: 2rem;
}

.guarantee-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.guarantee-content p {
    margin-bottom: 0;
}

/* ==== INSTRUKTØR SECTION ==== */
.instruktør {
    padding: var(--section-spacing) 0;
    background-color: var(--background-grey);
}

.instructor-profile {
    display: flex;
    gap: 6rem;
    margin-bottom: 6rem;
}

.instructor-image {
    flex: 0 0 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 50%);
}

.instructor-details {
    flex: 1;
}

.instructor-details h3 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

.instructor-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.instructor-bio {
    margin-bottom: 3rem;
}

.instructor-credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.credential {
    display: flex;
    align-items: flex-start;
}

.credential-icon {
    flex: 0 0 4rem;
    color: var(--primary-color);
}

.credential-icon svg {
    width: 2.5rem;
    height: 2.5rem;
}

.credential-text {
    flex: 1;
}

.credential-text h4 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.credential-text p {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
    font-size: 1.4rem;
}

.instructor-team {
    text-align: center;
}

.instructor-team h3 {
    margin-bottom: 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 2rem;
    border: 5px solid white;
    box-shadow: var(--shadow-md);
}

.team-member h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.team-member p {
    color: var(--text-medium);
}

/* ==== FAQ SECTION ==== */
.faq {
    padding: var(--section-spacing) 0;
    background-color: var(--background-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--primary-light);
    margin-bottom: 2rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 2rem;
    padding-right: 2rem;
}

.faq-toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
}

.faq-icon-plus, .faq-icon-minus {
    width: 2.4rem;
    height: 2.4rem;
    transition: all var(--transition-normal);
}

.faq-icon-minus {
    display: none;
}

.faq-toggle[aria-expanded="true"] .faq-icon-plus {
    display: none;
}

.faq-toggle[aria-expanded="true"] .faq-icon-minus {
    display: block;
}

.faq-answer {
    padding: 0 0 2rem;
    display: none;
}

.faq-toggle[aria-expanded="true"] + .faq-answer {
    display: block;
}

/* ==== KONTAKT SECTION ==== */
.kontakt {
    padding: var(--section-spacing) 0;
    background-color: var(--background-grey);
}

.kontakt-wrapper {
    display: flex;
    gap: 5rem;
}

.kontakt-info, .kontakt-form {
    flex: 1;
}

.kontakt-details {
    margin-bottom: 4rem;
}

.kontakt-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.kontakt-icon {
    flex: 0 0 5rem;
    width: 5rem;
    height: 5rem;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
}

.kontakt-icon svg {
    width: 2.5rem;
    height: 2.5rem;
}

.kontakt-text {
    flex: 1;
    padding-left: 2rem;
}

.kontakt-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.kontakt-text p {
    margin-bottom: 0;
    color: var(--text-medium);
}

.google-map {
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.kontakt-form {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 4rem;
    box-shadow: var(--shadow-md);
}

.kontakt-form h3 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.4rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--text-light);
    border-radius: var(--border-radius-md);
    font-size: 1.6rem;
    transition: border-color var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
}

.form-checkbox input {
    width: auto;
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.form-checkbox label {
    font-weight: 400;
    font-size: 1.4rem;
}

.submit-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-weight: 600;
}

.submit-btn:hover {
    background-color: var(--primary-dark);
}

/* ==== FOOTER STYLES ==== */
.main-footer {
    background-color: var(--background-dark);
    color: white;
    padding-top: 6rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    flex: 1;
}

.footer-logo img {
    width: 180px;
    margin-bottom: 2rem;
}

.footer-logo p {
    font-size: 1.6rem;
    opacity: 0.8;
    max-width: 300px;
}

.footer-newsletter {
    flex: 1;
    max-width: 400px;
}

.footer-newsletter h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.footer-newsletter p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem;
    border: none;
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
    font-size: 1.6rem;
}

.newsletter-form button {
    padding: 1.2rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-normal);
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

.footer-middle {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-nav, .footer-legal, .footer-contact {
    flex: 1;
}

.footer-middle h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.footer-middle ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-middle ul li {
    margin-bottom: 1rem;
}

.footer-middle ul li a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition-normal);
}

.footer-middle ul li a:hover {
    color: var(--primary-light);
}

.footer-contact p {
    margin-bottom: 0.8rem;
    color: rgba(255,255,255,0.7);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 1.4rem;
    opacity: 0.7;
}

/* ==== UTILITIES ==== */
.back-to-top {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    width: 5rem;
    height: 5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top svg {
    width: 2.4rem;
    height: 2.4rem;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-dark);
    padding: 2rem 0;
    z-index: 1001;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.cookie-content p {
    color: white;
    margin-bottom: 0;
    max-width: 60%;
}

.cookie-buttons {
    display: flex;
    gap: 1.5rem;
}

.cookie-more {
    padding: 1rem 2rem;
    color: white;
    border: 1px solid white;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal);
}

.cookie-more:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.cookie-accept {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-normal);
}

.cookie-accept:hover {
    background-color: var(--primary-dark);
}

/* ==== RESPONSIVE STYLES ==== */
@media (max-width: 1200px) {
    html {
        font-size: 58%;
    }
    
    .hero-content {
        max-width: 50%;
    }
    
    .instructor-profile {
        flex-direction: column;
        gap: 3rem;
    }
    
    .instructor-image {
        flex: 0 0 auto;
        max-width: 100%;
        height: 400px;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 56%;
    }
    
    .section-header {
        margin-bottom: 4rem;
    }
    
    .hero {
        padding: 10rem 0 5rem;
    }
    
    .hero-container {
        flex-direction: column;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-image {
        padding-left: 0;
    }
    
    .om-kurset-content {
        flex-direction: column;
        gap: 4rem;
    }
    
    .fordele-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        max-width: 100%;
        width: 100%;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .team-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 4rem;
    }
    
    .kontakt-wrapper {
        flex-direction: column;
    }
    
    .footer-top, .footer-middle {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-newsletter {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 54%;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        padding: 8rem 2rem 2rem;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-normal);
        z-index: 999;
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .nav-link {
        padding: 1.5rem;
    }
    
    .kontakt-btn {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .modul-timeline::before {
        left: 40px;
    }
    
    .modul-number {
        width: 8rem;
        height: 8rem;
        font-size: 2.4rem;
    }
    
    .modul-content {
        padding-left: 2rem;
    }
    
    .fordele-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slide {
        flex-direction: column;
    }
    
    .testimonial-image {
        height: 300px;
    }
    
    .results-stats {
        flex-direction: column;
        gap: 3rem;
    }
    
    .stat-text {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 4.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section-tag {
        font-size: 1.2rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    .testimonial-content {
        padding: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius-md);
        margin-bottom: 1rem;
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius-md);
    }
}