:root {
    --primary: #005D8A;
    --primary-dark: #00456B;
    --secondary: #FFC107;
    --secondary-dark: #E6AD00;
    --accent: #FF5722;
    --accent-dark: #E64A19;
    --light: #F8F9FA;
    --dark: #212529;
    --gray: #6C757D;
    --light-gray: #E9ECEF;
    --white: #FFFFFF;
    --success: #28A745;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    --gradient-dark: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Breadcrumbs */
.breadcrumb {
    background: transparent;
    padding: 1rem 0;
    margin-bottom: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--gray);
    content: "›";
}

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

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

/* Featured Snippet Box */
.featured-snippet-box {
    background: var(--light);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.featured-snippet-box p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Social Proof Banner */
.social-proof-banner {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 10px;
}

.pulse-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Price Freshness */
.price-freshness {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.live-indicator {
    color: var(--success);
    font-weight: 700;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin: 2rem 0;
}

.trust-badges img {
    height: 50px;
    width: auto;
}

.rating {
    font-weight: 700;
    color: var(--primary);
}

/* Video Section */
.video-section {
    margin: 3rem 0;
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-top: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

/* Download Section */
.download-section {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
}

.download-btn {
    display: inline-block;
    margin: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 93, 138, 0.3);
}

/* Related Questions */
.related-questions {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin: 2rem 0;
}

.related-questions ul {
    list-style: none;
    padding: 0;
}

.related-questions li {
    padding: 1rem;
    border-bottom: 1px solid var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.related-questions li:hover {
    background: var(--light);
    padding-left: 1.5rem;
}

/* Time Savings Calculator */
.time-calculator {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
}

.calculator-form {
    max-width: 500px;
    margin: 2rem auto 0;
}

.calculator-result {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    display: none;
}

.calculator-result.show {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

/* Modern Header */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 0.75rem 1.25rem !important;
    margin: 0 0.25rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 93, 138, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.nav-link:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-link:hover:before {
    width: 100%;
    height: 100%;
}

/* Hero Section with Parallax */
.hero {
    min-height: 100vh;
    background-image: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%), 
                      url('https://rostockgedser.de/images/bunte-haeuser-in-kopenhagen-nyhavn.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

.hero .lead {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Animated Route Visualization */
.route-visual {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-top: -80px;
    position: relative;
    z-index: 10;
    animation: slideIn 0.8s ease-out 0.5s both;
}

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

.route-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 2rem 0;
}

.route-point {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.route-point-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 24px rgba(0, 93, 138, 0.3);
    transition: transform 0.3s ease;
}

.route-point:hover .route-point-icon {
    transform: scale(1.1) rotate(5deg);
}

.route-point-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.route-connection {
    position: absolute;
    top: 50%;
    left: 25%;
    right: 25%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
    transform: translateY(-50%);
    z-index: 1;
}

.route-connection::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--secondary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
    animation: pulse 2s infinite;
}

/* Modern Booking Box */
.booking-box {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.booking-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.form-control, .form-select {
    border-radius: 50px;
    border: 2px solid var(--light-gray);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--light);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 93, 138, 0.25);
    background-color: var(--white);
}

/* Modern Buttons */
.btn-primary-modern {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 93, 138, 0.3);
}

.btn-primary-modern:hover::before {
    width: 300px;
    height: 300px;
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
    position: relative;
}

.content-section:nth-child(even) {
    background-color: var(--light);
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.feature-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.feature-card-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-dark);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-card-img::after {
    opacity: 1;
}

.feature-card-content {
    padding: 2rem;
}

/* Price Comparison Table */
.price-table {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.price-table thead {
    background: var(--gradient-primary);
    color: var(--white);
}

.price-table th {
    padding: 1.5rem;
    font-weight: 600;
    text-align: center;
    border: none;
}

.price-table td {
    padding: 1.25rem;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.price-table tr:hover {
    background-color: var(--light);
}

.price-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Interactive Map */
#route-map {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Insider Tips Section */
.insider-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4rem 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.insider-section::before {
    content: '💡';
    font-size: 150px;
    position: absolute;
    top: -50px;
    right: -50px;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.insider-tip {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.insider-tip:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

/* FAQ Accordion */
.accordion-modern {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.accordion-modern .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.accordion-modern .accordion-button {
    background: var(--white);
    color: var(--dark);
    font-weight: 600;
    padding: 1.5rem;
    border-radius: 15px !important;
    transition: all 0.3s ease;
}

.accordion-modern .accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: none;
}

.accordion-modern .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-modern .accordion-body {
    padding: 1.5rem;
    background: var(--light);
}

/* Top Offers Widget */
.top-offers-widget {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}

.offer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.offer-item:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateX(5px);
}

.offer-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.offer-item:hover .offer-price {
    color: var(--white);
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    margin-bottom: 2rem;
}

.testimonial-card::before {
    content: '"';
    font-size: 80px;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid var(--primary);
}

/* Weather Widget */
.weather-widget {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.weather-display {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.weather-item {
    flex: 1;
}

.weather-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.weather-temp {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* Author Box */
.author-expertise {
    background: var(--light);
    border-left: 4px solid var(--primary);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 0 15px 15px 0;
}

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

.author-info {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 1.5rem;
    border: 3px solid var(--primary);
}

/* Exit Intent Popup */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.exit-popup.show {
    display: flex;
}

.exit-popup-content {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: popupIn 0.3s ease-out;
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.exit-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
}

/* Seasonal Price Table */
.seasonal-prices {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.seasonal-chart {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.season-card {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.season-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.season-name {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.season-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

/* Footer */
.site-footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

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

.footer-section h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .route-line {
        flex-direction: column;
        gap: 2rem;
    }

    .route-connection {
        top: 80px;
        bottom: 80px;
        left: 50%;
        right: auto;
        width: 3px;
        height: auto;
        transform: translateX(-50%);
    }

    .booking-box {
        padding: 1.5rem;
    }

    .content-section {
        padding: 3rem 0;
    }

    .price-table {
        font-size: 0.875rem;
    }

    .insider-section {
        padding: 2rem 1.5rem;
    }

    .top-offers-widget {
        position: static;
        margin-bottom: 2rem;
    }
}

/* iPhone 7 Specific */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .btn-primary-modern {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .route-point-icon {
        width: 60px;
        height: 60px;
    }

    .feature-card-content {
        padding: 1.5rem;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

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

.slide-up {
    animation: slideUp 0.8s ease-out;
}

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

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 93, 138, 0.3);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 93, 138, 0.4);
}
    </style>

/* Table of Contents */
.toc {
    background: var(--white);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary);
}
.toc h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.toc ol {
    padding-left: 1.2rem;
    margin: 0;
}
.toc li {
    margin-bottom: 0.4rem;
}
.toc a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
}
.toc a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Author / Testimonial Initials */
.author-initials {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 1rem;
    flex-shrink: 0;
    border: 3px solid var(--primary-light, #0087cc);
}

/* Trust Badge Text */
.trust-badge-text {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

/* Image Credits */
.img-credit {
    font-size: 0.75rem;
    color: var(--gray);
    text-align: right;
    margin-top: 0.25rem;
}
.img-credit a {
    color: var(--gray);
    text-decoration: underline;
}

/* Content images */
.content-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 1.5rem 0 0.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
