/* Base styles */
body {
    background-color: rgb(243 244 246);
    color: #00214E;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    z-index: 50;
}

/* Typography */
h1, h2, h3, h4, .text-primary {
    color: #00214E;
}

.text-gray-600 {
    color: #00214E;
}

/* Buttons */
.btn-primary {
    background-color: rgb(59 130 246);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: rgb(37 99 235);
}

/* List Styles */
.bullet-list li {
    display: flex;
    align-items: start;
}

.bullet-list li::before {
    content: "•";
    color: rgb(59 130 246);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Responsive Utilities */
@media (min-width: 640px) {
    .sm\:hidden {
        display: none;
    }
    
    .sm\:block {
        display: block;
    }
    
    .sm\:text-base {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}

/* Container */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* Spacing Utilities */
.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.hidden {
    display: none !important;
}

/* Стили для контента */
.privacy-content {
    display: none;
    padding: 1.5rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
}

.privacy-content.show {
    display: block;
}

/* Стили для текста внутри контента */
.privacy-content p,
.privacy-content ul,
.privacy-content li {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #00214E;
}

.privacy-content ul {
    padding-left: 1.5rem;
}

.privacy-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #00214E;
    font-weight: bold;
}

/* Стили для кнопок */
.privacy-button {
    background-color: #00214E;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
}

.privacy-button:hover {
    background-color: #003171;
}

/* Обновленные стили для контента */
#fullDatenschutz,
#fullPrivacy,
#fullImpressumDe,
#fullImpressumEn {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    max-height: none;
    overflow: visible;
    padding: 1.5rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
}

#fullDatenschutz[style*="display: block"],
#fullPrivacy[style*="display: block"],
#fullImpressumDe[style*="display: block"],
#fullImpressumEn[style*="display: block"] {
    opacity: 1;
    display: block !important;
}

/* Стили для текста внутри контента */
#fullDatenschutz p,
#fullPrivacy p,
#fullImpressumDe p,
#fullImpressumEn p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #00214E;
}

#fullDatenschutz ul,
#fullPrivacy ul,
#fullImpressumDe ul,
#fullImpressumEn ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: #00214E;
}

#fullDatenschutz li,
#fullPrivacy li,
#fullImpressumDe li,
#fullImpressumEn li {
    margin-bottom: 0.5rem;
    color: #00214E;
}

#fullDatenschutz h3,
#fullPrivacy h3,
#fullImpressumDe h3,
#fullImpressumEn h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #00214E;
    font-weight: bold;
}

.contact-button {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.instant-hide {
    transition: none !important;
} 