body {
  background-color: white;
	transition: opacity 0.1s ease-out;
	overscroll-behavior-x: none;
}

/* Hero section video switching */
.desktop-video {
    display: block;
}

.mobile-video {
    display: none;
}

@media (max-width: 767px) {
    .desktop-video {
        display: none;
    }
    
    .mobile-video {
        display: block;
    }
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Dette forhindrer horisontal scrolling */
}

.nav-buttons {
	position: absolute;
    top: 0.5rem;
	z-index: 100;
}

.nav-top-wrapper {
	display: flex;
	flex-direction: column;
}

.nav-text-wrapper {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	
}

#mobile-dropdownList {
	height: auto;
	overflow: hidden; 
}



.logo-buttons-wrapper a:first-child .logo-wrapper {
    background-color: #fff;
}


/* Hide the dark logo by default */

/* Show the dark logo and hide the light logo on hover */




.dropdown {
  position: relative;
  display: inline-block;
  background-color: white;
	width: 100%;
  color: #132352;
  font-size: 0.9rem;
  font-family: korolev, sans-serif;
  font-weight: 500;
  border-radius: 0px 5px 5px 0px;
  cursor: pointer;
  padding: 0.5rem 1rem;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
  z-index: 1;
  border-radius: 0px 0px 5px 5px;
  left: 0;
  top: 1.9rem;
}

.dropdown-content a {
  color: #132352;
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #F3F9FD;
  border-radius: 5px;
}

.show {
  display: block;

}

.selected-item::after {
  content: '\25BC'; /* Unicode character for a downward-pointing chevron */
  font-size: 0.5rem;
  position: absolute;
  right: 10px;
  top: 50%;
   transform: translateY(-50%);
}


.calc-wrap {
  grid-column: span 2; /* Span over two columns */
}


/*rabataftaler */

.discount-section {
    padding: 60px 20px;
    background-color: #fff;
}

.discount-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2rem;
}

.discount-container {
    width: 100%;
    max-width: 1600px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: flex;
  }

  .d-image-wrap {
    position: relative;
    aspect-ratio: 181 / 120;

  }

  .discount-image {
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 8px;
  }

/* terms pop-up modal */


#myBtn {
   background-color: transparent; 
    color: white; /* White text */
    border: none; /* Remove border */
    cursor: pointer; /* Cursor style for clickable elements */
	display: flex;
	text-align: left;
	gap: 2px;
	font-size: 0.9rem;
	font-family: korolev, sans-serif;
}

/* The Modal (background) */
.modal {
    position: fixed; /* Stay in place */
    z-index: 999999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: none; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    position: relative;
  color: #001F46;
	font-family: korolev, sans-serif;
	font-weight: 500;
  border-radius: 5px;
    background-color: #fefefe;
    margin: 8rem auto;
    padding: 2rem;
    width: 40%; /* Could be more or less, depending on screen size */
	/*height: 60%;*/
	height: auto;
	overflow: auto;
}

/* Style the scrollbar and scrollbar thumb for WebKit browsers */
.modal-content::-webkit-scrollbar {
    width: 0.5rem; /* Adjust the width as needed */
}

.modal-content::-webkit-scrollbar-thumb {
    background-color: #888; /* Color of the scrollbar thumb */
    border-radius: 6px; /* Rounded corners for the thumb */
}



/* The Close Button */
.close {
    color: #001F46;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}



@media screen and (max-width: 991px) {

	.modal {
		overflow: auto; /* Enable scroll if needed */
	}

.modal-content {
    width: 80%; /* Could be more or less, depending on screen size */
	padding: 1rem;
}
	
.discount-grid {

        grid-template-columns: 1fr 1fr;
        grid-gap: 2rem;
    }	

}

@media screen and (max-width: 479px) {
	.w-input {
		max-width: 20rem;
	}
	
	.modal {
		overflow: auto; /* Enable scroll if needed */
	}
	
	.modal-content {
    width: 90%; /* Could be more or less, depending on screen size */
}
.discount-grid {

        grid-template-columns: 1fr;
        grid-gap: 2rem;
    }
	
.nav-buttons {
	position: static;
	display: flex;
	flex-direction: column;
	margin-bottom: 2rem;
	}
	
/*	.logo-buttons-wrapper {
		display: none;
	}*/
	
	.logo-buttons-wrapper {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	
}
	
	
	.logo-wrapper {
	padding-left: 0.8rem;
	padding-right: 0.8rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}


/*	
	.mobile-nav-dropdown {
  position: relative;
  display: none;
  background-color: white;
  min-width: 11rem;
  border-radius: 5px;
  cursor: pointer;
  padding: 0.5rem 1rem;
}
	
	.mobile-nav-dropdown::after {
  content: '\25BC'; 
  font-size: 0.5rem;
  position: absolute;
  right: 10px;
  top: 50%;
   transform: translateY(-50%);
}

.mobile-nav-dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
  z-index: 1;
  border-radius: 0px 0px 5px 5px;
  left: 0;
  top: 1.7rem;
	padding-top: 0.5rem;
}

.mobile-nav-dropdown-content a {
  padding: 0.5rem 1rem;

}
	
	.mobile-nav-dropdown img {
	height: 1rem;
}
	
	.mobile-nav-dropdown-content img {
		height: 1rem;
	
	}

.mobile-nav-dropdown-content a:hover {
  background-color: #F3F9FD;
  border-radius: 5px;
}

.mobile-nav-show {
  display: block;
	display: flex;
    flex-direction: column;
}
	
	 */
	
	.input-field-wrapper {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
}
	
#w-node-_29cc3733-1308-c545-f6ff-0ce0c04d1c8b-5dda7e41, #w-node-_29cc3733-1308-c545-f6ff-0ce0c04d1c8e-5dda7e41 {
	align-self: start; 
	}
	
	.dropdown {
		width: 100%;
		border-radius: 5px;
		max-width: 20rem;
	}

.field-label {
	margin-top: 1rem !important;
	}
	
	.from-input, .to-input { 
	border-radius: 5px;
	}
	
	#w-node-cef0619d-004c-66fe-e897-65371f768b26-5dda7e41 {
		margin-top: 1rem;
		justify-content: flex-start;
	}
	
	
	
	
}

/*----- MOBIL DROP DOWN -----*/
/* Dropdown container */

/* Dropdown button */

/* Arrow next to selected item */

/* Dropdown content (hidden by default) */

/* Dropdown content links */

/* Show the dropdown content */
.show {
  display: block;
}

#mobile-selectedItemImage {
  height: 20px;
  width: auto;
}

h4 {
  margin-bottom: 0px;
  color: #002f6c;
  margin-top: 0;
  font-family: korolev, sans-serif;
}


.e45-video-section {
    flex: 0 0 40%; /* 40% of the container width */
    margin: 0; /* Remove any default margins */
    padding: 0; /* Remove any default padding */
    display: flex;
    justify-content: center;
    align-items: center;
}


.e45-video {
    width: 100%; /* Ensure the video/image fills the section */
    height: auto; /* Maintain aspect ratio */
    max-height: 650px; /* Limit the maximum height */
    -o-object-fit: cover;
       object-fit: cover; /* Crop the video/image to fit the container */
}

.e45-section {
    display: flex;
    background-color: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    margin: 100px auto;
	max-width: 1600px;
}

.e45-text-section {
    flex: 1;
    padding: 20px 100px 20px 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.e45-text-section h2 {
    color: #002f6c;
    margin-top: 0;
    font-family: korolev, sans-serif;
}

.e45-text-section p {
    color: #002f6c;
    line-height: 1.5;
    font-family: korolev, sans-serif;
    font-size: 16px;
    margin: 8px 0;
}

.e45-text-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.e45-text-section ul li {
    color: #002f6c;
    line-height: 1.5;
    font-family: korolev, sans-serif;
    margin-bottom: 10px;
    padding-left: 40px; /* Space for the icon */
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.e45-text-section ul li .icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
}

.e45-text-section ul li .icon svg {
    width: 100%;
    height: 100%;
}


.e45-video-section {
    flex: 1;
    margin: 0;
    padding: 20px 0px; /* Add padding to create space between text and video/image */
    display: flex;
    justify-content: center;
    align-items: center;
}


.e45-video {
    width: 100%;
    height: 600px; /* Set fixed height for higher aspect ratio */
    -o-object-fit: cover;
       object-fit: cover; /* Crop the video/image to fit the container */
    border-top-left-radius: 100px; /* Rounded top left corner */
    border-bottom-right-radius: 100px; /* Rounded bottom right corner */
    border-top-right-radius: 20px; /* Rounded top left corner */
    border-bottom-left-radius: 20px; /* Rounded bottom right corner */
}

/* Specifik klasse til at ændre placeringen af billedet til højre */

/* Small button adjustments */
.small-button {
    max-width: 400px; /* Ensures the button width is auto */
    margin-top: 50px;
    text-align: center;
}


/* Media query for mobile devices */
@media (max-width: 768px) {
    
    .e45-section {
        flex-direction: column;
        margin: 30px auto; /* Increase margin for mobile */
    }

    
    .e45-video-section {
        order: -1; /* Move image/video section above text section */
    }
	
    .e45-text-section {
        padding: 0px 0px; /* Less padding for mobile */
    }

    
    .e45-video {
        width: 100%;
        height: auto; /* Auto height to maintain aspect ratio */
        max-height: 300px; /* Adjust height for mobile */
        -o-object-fit: cover;
           object-fit: cover; /* Crop the video/image to fit the container */
        border-radius: 10px; /* Remove border radius for mobile */
    }

}


@media screen and (max-width: 520px) {
	.logo-buttons-wrapper{
	display:none;}
}


/* Annika Story Section - Simpel Original Style */
.annika-story-section {
    background-color: #001F47;
    padding: 60px 0 !important;
    position: relative !important;
    z-index: 10 !important;
    clear: both !important;
    width: 100% !important;
    display: block !important;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.story-content p {
    color: white;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.story-button {
    background-color: transparent !important;
    color: white !important;
    padding: 15px 30px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    font-size: 1.1rem !important;
    display: inline-block !important;
    transition: background-color 0.3s ease !important;
    border: 2px solid white !important;
    cursor: pointer !important;
}

.story-button:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    text-decoration: none !important;
}

/* Poll Sektion med Video */
.poll-section {
    background-color: white !important;
    padding: 80px 20px 140px 20px !important;
    position: relative !important;
    z-index: 10 !important;
    clear: both !important;
    width: 100% !important;
    display: block !important;
}

.poll-video-content {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    height: 700px;
}

.poll-header {
    text-align: center;
    margin-bottom: 60px;
}

.poll-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.poll-video-element {
    width: 100%;
    height: 100%;
    max-width: 1600px;
    height: 700px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Poll step animations */
.poll-step-transition {
    transition: all 0.5s ease-in-out;
}

.poll-step-fade-out {
    opacity: 0;
    transition: opacity 0.15s ease-out;
}

.poll-step-fade-in {
    opacity: 0;
    transition: opacity 0.15s ease-in;
}

.poll-step-fade-in.active {
    opacity: 1;
}

.poll-step2 {
    opacity: 0;
    transition: opacity 0.2s ease-in;
}

.poll-step2.visible {
    opacity: 1;
}

.poll-results-in-form {
    animation: fadeInUp 0.4s ease-in-out;
}

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







/* Kombardo-sang Section */
.kombardo-section {
    background: white;
    padding: 80px 0;
}

.kombardo-section .kombardo {
    margin: 0;
    padding: 0;
    width: 100%;
}

.kombardo-section .booking-cta.full-width {
    width: 100%;
    display: block;
    text-align: center;
    margin: 0;
    padding: 15px 20px;
    box-sizing: border-box;
}


.poll-content {
    position: absolute;
    top: 65%;
    right: 7%;
    transform: translateY(-50%);
    z-index: 10;
    width: 45%;
    max-width: 500px;
    min-height: 500px;
}

.poll-header h2 {
    color: #132352;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.2;
}

.poll-subtitle {
    color: #132352;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.poll-form-container {
    margin-top: 0;
}

.poll-form {
    background-color: #001F47;
    border-radius: 120px 20px 120px 20px !important;
    padding: 55px 35px !important;
    width: 100% !important;
    max-width: 500px !important;
    height: fit-content !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.poll-prize {
    text-align: center;
    margin-bottom: 30px;
}

.poll-prize h3 {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.poll-prize p {
    color: #2BF6A5;
    font-size: 1.1rem;
    font-weight: 600;
}

.poll-form-element h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.poll-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 25px;
}

.poll-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #2BF6A5;
    border-radius: 50px;
    padding: 12px 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.poll-option:hover {
    background-color: #25d494;
    transform: translateY(-2px);
}

.poll-option input[type="radio"] {
    display: none;
}

.poll-option input[type="radio"]:checked + .option-text {
    font-weight: bold;
}

.poll-option:has(input[type="radio"]:checked) {
    transform: scale(1.02);
    border-color: #132352;
}

/* Checkmark indicator */
.poll-option::after {
    content: '✓';
    font-size: 1.2rem;
    font-weight: bold;
    color: #132352;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    margin-left: 10px;
}

.poll-option:has(input[type="radio"]:checked)::after {
    opacity: 1;
    transform: scale(1);
}

/* Special styling for "Udfyld selv" section */
.custom-answer-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#customRadio {
    display: none !important;
}

.poll-option.custom-option {
    background-color: white !important;
    padding: 12px 18px;
    min-height: auto;
    margin-bottom: 0;
    border-radius: 50px;
    border: 2px solid #e0e0e0;
}

.poll-option.custom-option .option-text {
    color: #132352 !important;
    font-weight: 700;
    font-size: 1rem;
    margin-right: 0;
}

.poll-option.custom-option:hover {
    background-color: #f8f9fa !important;
    border-color: #25d494;
}

.poll-option.custom-option:has(input[type="radio"]:checked) {
    transform: scale(1.02);
    border-color: #132352 !important;
}

/* Checkmark for custom option */
.poll-option.custom-option::after {
    color: #2BF6A5;
}

.custom-input-container {
    display: none;
}

.custom-input-container.show {
    display: block;
}

.custom-text-input {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid #2BF6A5;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    background: white;
    color: #132352;
    text-align: left;
    outline: none;
}

.custom-text-input:focus {
    border-color: #25d494;
    background: #f8f9fa;
}


.custom-text-input::placeholder {
    color: #132352;
    opacity: 0.7;
}



.option-text {
    color: #132352;
    font-size: 1rem;
    font-weight: 700;
    flex: 1;
}

.custom-input {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 8px 12px;
    margin-left: 0;
    flex: 1;
    font-size: 0.9rem;
    color: #333;
    transition: border-color 0.2s ease;
}

.custom-input:focus {
    outline: none;
    border-color: #2BF6A5;
    background-color: white;
}

.custom-input::placeholder {
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .poll-section {
        padding: 0 !important;
    }
    
    .poll-header {
        display: none !important;
    }
    
    .poll-video-content {
        flex-direction: column !important;
        position: relative !important;
        min-height: auto !important;
        height: auto !important;
        margin: 0 !important;
        gap: 0 !important;
    }
    
    .poll-video {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        margin-bottom: -5px !important;
    }
    
    .poll-video-element {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        border: none !important;
    }
    
    .poll-content {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 40px 20px !important;
    }
    
    .poll-form {
        background-color: #132352 !important;
        border-radius: 0 !important;
        padding: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-shadow: none !important;
        margin: 0 !important;
    }

    .poll-option {
        padding: 10px 15px !important;
    }
    
    .poll-options {
        gap: 20px !important;
    }

    .annika-story-section {
        padding: 40px 20px !important;
    }
    
    
}

/* GDPR Checkbox Styling */
.gdpr-checkbox {
    margin: 20px 0;
    text-align: left;
}

.gdpr-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
    color: white;
}

.gdpr-label input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.gdpr-text {
    color: white;
    font-size: 0.85rem;
    line-height: 1.3;
}

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

.poll-submit-btn {
    /* Inherits from .cta base styling */
    /* Make it bigger than default .cta */
    padding: 18px 40px !important;
    font-size: 1.2rem !important;
}

/* Ensure scroll down icon has highest z-index */
.scroll-down-icon {
    z-index: 9999 !important;
}

.scroll-icon_wrapper {
    z-index: 9999 !important;
}

/* Poll Step 2 styling */
.poll-input-field {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    background: white !important;
    color: #132352 !important;
    font-family: inherit;
}

.poll-input-field::placeholder {
    color: #6c757d !important;
}

.poll-input-field:focus {
    outline: none;
    border-color: #132352 !important;
    background: white !important;
    color: #132352 !important;
    box-shadow: 0 0 0 2px rgba(19, 35, 82, 0.1);
}



/* Clean Poll Results - minimal and elegant */
.poll-results-clean {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
    max-height: 400px;
}

.result-item-clean {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 16px 24px;
    transition: all 0.2s ease;
    cursor: default;
    min-height: 60px;
    font-size: 14px;
}


.result-text-clean {
    color: white;
    font-weight: 500;
    font-size: 0.85rem;
    white-space: nowrap;
    flex: 1;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 12px;
    line-height: 1.3;
}

.result-percentage-clean {
    color: #2BF6A5;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 40px;
    text-align: right;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .story-content {
        padding: 0 20px;
    }
    
    .story-content p {
        font-size: 1.1rem;
    }
    
    .story-button {
        display: block;
        margin: 0 auto;
    }
    
    .poll-header h2 {
        font-size: 2rem;
    }
    
    .poll-subtitle {
        font-size: 1.1rem;
    }

    .discount-section {
        padding-top: 40px;
    }

    .poll-content {
        padding: 0 !important;
    }
}

/* E45 eller færgen modul */
.e45-or-ferry-module {
    position: relative;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto 80px auto;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}

.e45-or-ferry-image-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.e45-or-ferry-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.e45-or-ferry-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    object-position: center 40%;
}

.e45-or-ferry-text-section {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 60px 40px;
    text-align: center;
}

.e45-or-ferry-text-section h2 {
    color: white;
    margin-top: 0;
    font-family: korolev, sans-serif;
    font-size: 3.5rem;
    margin-bottom: 0;
    line-height: 1.2;
    font-weight: 700;
}

.e45-or-ferry-text-section p {
    color: white;
    line-height: 1.6;
    font-family: korolev, sans-serif;
    margin: 0;
    font-size: 1.1rem;
}

/* Mobile responsive for E45 modul */
@media (max-width: 768px) {
    .e45-or-ferry-module {
        min-height: 300px;
        margin-bottom: 40px;
    }
    
    .e45-or-ferry-image {
        min-height: 300px;
    }
    
    .e45-or-ferry-text-section {
        padding: 100px 20px;
    }
    
    .e45-or-ferry-text-section h2 {
        font-size: 2.2rem;
    }
    
    .e45-or-ferry-text-section p {
        font-size: 1rem;
    }


}
