/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #8b6914;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #8b6914;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #8b6914;
    transition: width 0.3s ease;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #8b9dc3 0%, #ddb892 50%, #f7f3e9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #2c3e50;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,133.3C672,139,768,181,864,202.7C960,224,1056,224,1152,208C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom center/cover;
    animation: wave 3s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    padding: 0 2rem;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: #ddb892;
}

.wave {
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #ddb892;
    color: #2c3e50;
}

.btn-primary:hover {
    background: #c9a876;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(221, 184, 146, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn-secondary:hover {
    background: #2c3e50;
    color: #f7f3e9;
    transform: translateY(-2px);
}

.floating-boat {
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.floating-boat i {
    color: rgba(255, 255, 255, 0.8);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: pulse 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-radius: 50%;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
}

/* Story Section */
.story {
    background: #ffffff;
    position: relative;
    z-index: 10;
    margin-top: -50px;
    padding-top: 100px;
}

.story-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.story-subtitle {
    text-align: center;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Consultation Section */
.consultation {
    background: white;
    padding: 5rem 0;
}

.consultation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.consultation-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.consultation-text p {
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.consultation-features {
    display: grid;
    gap: 2rem;
}

.consultation-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid #8b6914;
}

.consultation-item i {
    color: #8b6914;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.consultation-item h4 {
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.consultation-item p {
    color: #6b7280;
    margin: 0;
    font-size: 0.95rem;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.owners {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.owner {
    text-align: center;
}

.owner-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b9dc3, #ddb892);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 0.5rem;
}

.story-features {
    display: grid;
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 3rem;
    color: #8b6914;
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.feature p {
    color: #6b7280;
}

/* News Section */
.news {
    background: #f8fafc;
    position: relative;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.timeline-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #8b6914;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.timeline-date {
    background: linear-gradient(135deg, #8b6914, #ddb892);
    color: white;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.timeline-content {
    padding: 2rem 1.5rem;
    background: white;
}

.timeline-content h3 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Instagram Section */
.instagram-section {
    background: #ffffff;
    padding: 5rem 0;
    position: relative;
}

.instagram-section .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.instagram-section .section-title i {
    color: #E4405F;
    font-size: 2.5rem;
}

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

.instagram-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.instagram-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.instagram-post:hover .instagram-image img {
    transform: scale(1.05);
}

.instagram-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    font-size: 1.2rem;
    color: #E4405F;
}

.instagram-content {
    padding: 1.5rem;
}

.instagram-content p {
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
    color: #333;
}

.instagram-content p:last-of-type {
    margin-bottom: 1rem;
}

.instagram-time {
    color: #8e8e93;
    font-size: 0.9rem;
}

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

.instagram-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #E4405F, #C13584);
    color: white;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.instagram-cta .btn:hover {
    background: linear-gradient(45deg, #C13584, #E4405F);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(196, 53, 132, 0.3);
}

/* Instagram oEmbed Styles */
.instagram-embed-container {
    position: relative;
    min-height: 400px;
}

.instagram-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    color: #8e8e93;
    font-size: 1.1rem;
}

.instagram-loading i {
    font-size: 3rem;
    color: #E4405F;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.instagram-fallback {
    text-align: center;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px dashed #ddd;
}

.instagram-fallback p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

/* Instagram Status Indicator */
.instagram-status-indicator {
    background: linear-gradient(135deg, #f8fafc, #e1e7ef);
    border: 1px solid #d1d9e0;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.status-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.status-text {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.refresh-btn {
    background: #8b6914;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.refresh-btn:hover {
    background: #6d5411;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 105, 20, 0.3);
}

.refresh-btn:active {
    transform: translateY(0);
}

.refresh-btn i {
    font-size: 0.8rem;
}

/* Auto-Refresh Animation */
.refresh-btn.refreshing i {
    animation: spin 1s linear infinite;
}

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

/* Instagram oEmbed Grid */
.instagram-embed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.instagram-embed-post {
    background: white;
    border: 1px solid #dbdbdb;
    border-radius: 12px;
    overflow: hidden;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.instagram-embed-wrapper {
    width: 100%;
}

.instagram-embed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: white;
}

.instagram-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.instagram-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, #fd5949, #d6249f, #285AEB);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.instagram-username {
    font-weight: 600;
    color: #262626;
    font-size: 14px;
}

.instagram-menu {
    color: #262626;
    cursor: pointer;
    padding: 8px;
}

.instagram-embed-image {
    width: 100%;
    position: relative;
    background: #f8f9fa;
}

.instagram-embed-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.instagram-embed-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    background: white;
}

.instagram-icons {
    display: flex;
    gap: 16px;
}

.instagram-icons i,
.instagram-bookmark i {
    font-size: 20px;
    color: #262626;
    cursor: pointer;
    transition: color 0.3s ease;
}

.instagram-icons i:hover,
.instagram-bookmark i:hover {
    color: #8e8e93;
}

.instagram-embed-content {
    padding: 0 16px 16px;
    background: white;
}

.instagram-likes {
    margin-bottom: 8px;
    font-size: 14px;
    color: #262626;
}

.instagram-caption {
    font-size: 14px;
    line-height: 1.4;
    color: #262626;
    margin-bottom: 8px;
}

.instagram-caption strong {
    font-weight: 600;
    margin-right: 6px;
}

.instagram-time {
    font-size: 12px;
    color: #8e8e93;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

/* Real Instagram Embeds Styling */
.instagram-real-embeds {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.instagram-real-embed {
    max-width: 400px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.instagram-real-embed iframe {
    border: none !important;
    border-radius: 12px;
    width: 100% !important;
}

.instagram-real-embed blockquote {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: none !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .instagram-real-embeds {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .instagram-real-embed {
        max-width: 100%;
    }
    
    .instagram-embed-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .instagram-embed-post {
        max-width: 100%;
    }
    
    .instagram-embed-image img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .instagram-embed-image img {
        height: 250px;
    }
    
    .instagram-embed-header {
        padding: 12px 14px;
    }
    
    .instagram-embed-content {
        padding: 0 14px 14px;
    }
}



/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item span {
    color: #4b5563;
    font-size: 1.1rem;
}

.contact-item i {
    color: #2563eb;
    font-size: 1.2rem;
}

.contact-item a {
    color: #4b5563;
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-item a:hover {
    color: #2563eb;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.contact-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .timeline-item {
        margin: 0;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .owners {
        justify-content: center;
    }

    .instagram-feed {
        grid-template-columns: 1fr;
    }
    
    .instagram-section .section-title {
        flex-direction: column;
        gap: 0.5rem;
    }

    .consultation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding: 8rem 2rem 4rem;
    background: #f8fafc;
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid #8b6914;
    padding-bottom: 1rem;
}

.legal-content h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    border-left: 4px solid #8b6914;
    padding-left: 1rem;
}

.legal-content h3 {
    color: #4b5563;
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #4b5563;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content ul li {
    line-height: 1.7;
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.legal-content a {
    color: #8b6914;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.legal-content a:hover {
    border-bottom-color: #8b6914;
}

.impressum-section {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid #ddb892;
}

.impressum-contact {
    background: #f0f9ff;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 2px solid #8b9dc3;
}

.contact-details {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.disclaimer {
    background: #fff7ed;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #fbbf24;
    margin: 2rem 0;
    font-style: italic;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 6rem 1rem 2rem;
    }
    
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
} 