/* info-wp.css */

:root {
    --primary-color: #21759b;
    --secondary-color: #d54e21;
    --background-color: #f5f7fa;
    --text-color: #333;
    --light-text-color: #666;
    --border-radius: 20px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.fc-wp-header {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
}

.fc-wp-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.fc-wp-header p {
    font-size: 1.4rem;
    font-weight: 300;
}

.fc-wp-steps-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.fc-wp-step {
    display: flex;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.fc-wp-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    font-size: 3rem;
    font-weight: bold;
}

.fc-wp-step-content-wrapper {
    flex: 1;
    padding: 2rem;
}

.fc-wp-step h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.fc-wp-step p, .fc-wp-step li {
    font-size: 1.1rem;
    color: var(--light-text-color);
    margin-bottom: 0.5rem;
}

.fc-wp-step-image {
    margin-top: 2rem;
}

.fc-wp-step-image img,
.fc-wp-multi-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.fc-wp-step-image img:hover,
.fc-wp-multi-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.fc-wp-multi-image {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.fc-wp-multi-image img {
    max-width: calc(50% - 1rem);
}

.fc-wp-download-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
}

.fc-wp-download-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.fc-wp-fullscreen {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.fc-wp-fullscreen img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.fc-wp-fullscreen-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.fc-wp-video-section {
    text-align: center;
    margin-top: 3rem;
}

.fc-wp-video-container {
    max-width: 560px;
    margin: 1rem auto;
    position: relative;
}

.fc-wp-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.fc-wp-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fc-wp-video-maximize {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.fc-wp-video-maximize:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.fc-wp-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.fc-wp-modal-content {
    position: relative;
    width: 90%;
    max-width: 960px;
    margin: 5% auto;
}

.fc-wp-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.fc-wp-modal-content iframe {
    width: 100%;
    height: 540px;
}

@media (max-width: 768px) {
    .fc-wp-modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .fc-wp-modal-content iframe {
        height: 300px;
    }
}

.fc-wp-cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: var(--border-radius);
    margin: 4rem auto;
    max-width: 1000px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.fc-wp-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 80%);
    transform: rotate(30deg);
}

.fc-wp-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.fc-wp-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    line-height: 1.6;
}

.fc-wp-cta-button {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.fc-wp-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.5s;
}

.fc-wp-cta-button:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.fc-wp-cta-button:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .fc-wp-cta-section {
        padding: 3rem 1.5rem;
    }

    .fc-wp-cta-section h2 {
        font-size: 2rem;
    }

    .fc-wp-cta-section p {
        font-size: 1rem;
    }

    .fc-wp-cta-button {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
}

.fc-wp-video-section {
    text-align: center;
    margin-top: 3rem;
}

.fc-wp-video-container {
    max-width: 800px;  /* Ökad från 560px */
    margin: 1rem auto;
    position: relative;
    border-radius: 15px;  /* Rundade hörn */
    overflow: hidden;  /* För att rundade hörn ska synas */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);  /* Lägg till skugga för djup */
}

.fc-wp-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.fc-wp-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fc-wp-video-maximize {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.fc-wp-video-maximize:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

/* ... (andra CSS-regler förblir oförändrade) ... */

.fc-wp-footer {
    background-color: var(--text-color);
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 3rem;
}

.fc-wp-footer p {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .fc-wp-video-container {
        max-width: 95%;  /* Gör videon responsiv på mindre skärmar */
    }

    .fc-wp-footer p {
        font-size: 0.9rem;
    }
}

.fc-wp-step ol {
    counter-reset: step-counter;
    list-style-type: none;
    padding-left: 0;
}

.fc-wp-step ol > li {
    counter-increment: step-counter;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2.5rem;
}

.fc-wp-step ol > li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.8rem;
    height: 1.8rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
}

.fc-wp-step .fc-wp-step-image {
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.fc-wp-step .fc-wp-step-image img {
    max-height: 50%;  /* Ändrad från 100% till 50% */
    max-width: 500px;
    width: auto;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .fc-wp-step .fc-wp-step-image img {
        max-width: 75%;  /* Ändrad från 80% till 75% för mindre skärmar */
    }
}

@media (max-width: 480px) {
    .fc-wp-step .fc-wp-step-image img {
        max-width: 100%;  /* Behåll full bredd på mycket små skärmar */
    }
}