/*
========================================
**
**  TABLE OF CONTENTS
**
**    1.  VARIABLES & RESET
**    2.  GLOBAL STYLES
**    3.  HEADER & NAVIGATION
**    4.  HERO SECTION
**    5.  ABOUT ME SECTION
**    6.  COOPERATION MODELS SECTION
**    7.  PROCESS SECTION
**    8.  INVESTMENTS SECTION
**    9.  TESTIMONIALS SECTION
**    10. CONTACT SECTION
**    11. FOOTER
**    12. MODALS
**    13. COOKIE BANNER
**    14. ANIMATIONS & HELPERS
**    15. MEDIA QUERIES
**
========================================
*/

/* 
 * 1. VARIABLES & RESET 
 */
:root {
    --color-background: #0A0A0A;
    --color-text: #EAEAEA;
    --color-primary: #BCA376;
    --color-secondary: #1A1A1A;
    --color-border: #2a2a2a;
    --font-main: 'Satoshi', sans-serif;
    --font-accent: 'General Sans', sans-serif;
    --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--color-background);
    color: var(--color-text);
    font-family: var(--font-main);
    font-weight: 400;
    line-height: 1.6;
}

/* 
 * 2. GLOBAL STYLES 
 */
main {
    display: block;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.2;
    text-wrap: balance;
}

h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    letter-spacing: -0.04em;
    overflow-wrap: break-word;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.03em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
}

h4 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 20px;
}

p {
    font-size: 1.1rem;
    max-width: 65ch;
    color: rgba(234, 234, 234, 0.8);
}

.highlight {
    color: var(--color-primary);
}

.highlight a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.highlight a:hover {
    color: var(--color-text);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 0;
}

.cta-button {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-background);
    padding: 15px 35px;
    text-decoration: none;
    font-family: var(--font-accent);
    font-weight: 600;
    border-radius: 5px;
    margin-top: 40px;
    transition: transform var(--transition-fast), background-color var(--transition-fast);
    border: 2px solid var(--color-primary);
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s 0.9s ease-out forwards;
}

.cta-button:hover {
    transform: translateY(-5px);
    background-color: transparent;
    color: var(--color-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header .subtitle {
    font-family: var(--font-accent);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    max-width: none;
}

/* 
 * 3. HEADER & NAVIGATION 
 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0) 100%);
    transition: background 0.4s ease-out, backdrop-filter 0.4s ease-out;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.logo {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1.4rem;
    text-decoration: none;
    color: var(--color-text);
    letter-spacing: -0.05em;
}

.logo span {
    color: var(--color-primary);
}

.nav {
    flex-grow: 1;
    text-align: center;
}

.nav a {
    color: var(--color-text);
    text-decoration: none;
    margin-left: 30px;
    font-family: var(--font-accent);
    font-weight: 500;
    position: relative;
    transition: color var(--transition-fast);
}

.nav a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform var(--transition-fast);
}

.nav a:hover,
.nav a:focus {
    color: var(--color-primary);
}

.nav a:hover::after,
.nav a:focus::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: flex;
    gap: 10px;
}

.lang-switcher a,
.lang-switcher button {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    color: var(--color-text);
    text-decoration: none;
    font-family: var(--font-accent);
    font-weight: 500;
    transition: all var(--transition-fast);
    background: none;
    cursor: pointer;
    font-size: inherit;
}

.lang-switcher a.active,
.lang-switcher button.active {
    background-color: var(--color-primary);
    color: var(--color-background);
    border-color: var(--color-primary);
}

.lang-switcher a:not(.active):hover {
    border-color: var(--color-primary);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-nav-toggle span {
    width: 30px;
    height: 3px;
    background: var(--color-text);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.mobile-nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.mobile-nav-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    background-color: var(--color-background);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    visibility: hidden;
}

.mobile-nav-panel.open {
    transform: translateX(0);
    visibility: visible;
}

.mobile-nav-panel a {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
}

/* 
 * 4. HERO SECTION 
 */
.hero {
    height: 100vh;
    height: 100dvh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 80px 5% 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(10,10,10,1) 5%, rgba(10,10,10,0.8) 20%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.8) 80%, rgba(10,10,10,1) 95%);
    z-index: -1;
}

.hero-content {
    animation: fadeIn 1.5s ease-out forwards;
    width: 100%;
}

.hero-content p {
    max-width: 50ch;
    margin: 20px auto 0;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s 0.7s ease-out forwards;
}

html:lang(pl) .hero-content p {
    max-width: 55ch;
}

/* 
 * 5. ABOUT ME SECTION 
 */
#o-mnie .container {
    display: flex;
    align-items: center;
    gap: 80px;
}

#o-mnie .about-text {
    flex: 1.5;
}

#o-mnie .about-text > p:nth-of-type(3),
#o-mnie .about-text > p:last-of-type {
    margin-top: 20px;
}

#o-mnie .about-photo {
    flex: 1;
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 8px;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform var(--transition-slow);
}

#o-mnie .about-photo:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

#o-mnie .about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%) contrast(1.1);
    transition: filter var(--transition-slow);
}

#o-mnie .about-photo:hover img {
    filter: grayscale(0%) contrast(1);
}

.about-me-header {
    text-align: left;
    margin-bottom: 40px;
}

.license-number {
    color: rgba(234, 234, 234, 0.6);
    font-family: var(--font-accent);
    margin-top: -30px;
    margin-bottom: 30px;
    font-size: 1rem;
}

/* 
 * 6. COOPERATION MODELS SECTION 
 */
.cooperation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.cooperation-column {
    background: var(--color-secondary);
    padding: 40px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.cooperation-column:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.cooperation-column > p {
    margin-bottom: 20px;
}

.cooperation-column ul {
    list-style: none;
    padding-left: 0;
}

.cooperation-column li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.cooperation-column li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 600;
}

.foundation-box {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: var(--color-secondary);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.foundation-box:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.foundation-box p {
    max-width: 80ch;
    margin: 0 auto;
}

/* 
 * 7. PROCESS SECTION 
 */
#proces .process-steps {
    position: relative;
    padding: 40px 0;
}

#proces .timeline {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-border);
    transform: translateX(-50%);
}

.process-step {
    position: relative;
    width: 50%;
    padding: 0 40px;
    margin-bottom: 40px;
}

.process-step:nth-child(odd) {
    text-align: right;
}

.process-step:nth-child(even) {
    margin-left: 50%;
    text-align: left;
}

.process-step::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--color-background);
    border: 4px solid var(--color-primary);
    top: 5px;
    transition: transform var(--transition-fast);
}

.process-step:nth-child(odd)::after {
    right: -11px;
}

.process-step:nth-child(even)::after {
    left: -9px;
}

.process-step:hover::after {
    transform: scale(1.2);
}

.step-number {
    color: var(--color-primary);
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* 
 * 8. INVESTMENTS SECTION 
 */
#inwestycje {
    background-color: var(--color-secondary);
}

#inwestycje .section-header p {
    margin: 20px auto 0;
    max-width: 70ch;
    text-align: center;
}

#inwestycje .section-header p:first-of-type {
    margin-top: 40px;
}

/* 
 * 9. TESTIMONIALS SECTION 
 */
#opinie {
    background-color: var(--color-secondary);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.slides-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 40px 80px;
    background: var(--color-secondary);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    text-align: center;
}

.slide p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
    color: rgba(234, 234, 234, 0.9);
    height: 8.0em;
    overflow: hidden;
    position: relative;
}

.slide p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--color-secondary));
}

.slide h4 {
    color: var(--color-primary);
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1.1rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(26, 26, 26, 0.5);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-background);
    border-color: var(--color-primary);
}

.slider-btn--left {
    left: 20px;
}

.slider-btn--right {
    right: 20px;
}

.dots-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: var(--color-border);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color var(--transition-fast);
    border: none;
    padding: 0;
}

.dot.active {
    background-color: var(--color-primary);
}

.read-more-link {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
    transition: color var(--transition-fast);
    display: block;
    margin-bottom: 20px;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    text-align: center;
}

.read-more-link:hover {
    color: var(--color-text);
}

.more-reviews-text {
    text-align: center;
    margin-top: 60px;
    font-family: var(--font-accent);
    font-size: 1.2rem;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}

/* 
 * 10. CONTACT SECTION 
 */
#kontakt {
    background: var(--color-secondary);
}

#kontakt .section-header > p {
    margin: 20px auto 0;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px auto 60px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-accent);
    font-size: 1.2rem;
}

.contact-item a {
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: var(--color-primary);
}

.contact-item svg {
    color: var(--color-primary);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-input {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
}

textarea.form-input {
    resize: vertical;
    min-height: 150px;
}

.form-label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: rgba(234, 234, 234, 0.6);
    pointer-events: none;
    transition: all 0.2s ease;
}

.form-input:focus + .form-label, .form-input:not(:placeholder-shown) + .form-label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    background-color: var(--color-secondary);
    padding: 0 5px;
    color: var(--color-primary);
}

#privacy-consent {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    accent-color: var(--color-primary);
}

.form-group label[for="privacy-consent"] {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: rgba(234, 234, 234, 0.7);
    position: static;
}

.form-group label[for="privacy-consent"] a {
    color: var(--color-primary);
    text-decoration: underline;
    margin-left: 5px;
}

.form-group label[for="privacy-consent"] a:hover {
    color: var(--color-text);
}

.contact-form button {
    grid-column: 1 / -1;
    justify-self: center;
}

/* 
 * 11. FOOTER 
 */
.footer {
    text-align: left;
    padding: 40px 5%;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer .social-links a {
    color: var(--color-text);
    text-decoration: none;
    margin: 0 15px;
    padding: 10px;
}

.footer .social-links a:hover {
    color: var(--color-primary);
}

.footer .social-links svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
    transition: color var(--transition-fast);
}

.footer p {
    margin: 5px 0;
    font-size: 0.9rem;
    color: rgba(234, 234, 234, 0.6);
}

.footer p:first-of-type {
    margin-top: 20px;
}

.footer p a {
    color: inherit;
    text-decoration: none;
}

.footer p a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.9rem;
    margin-top: 5px;
}

.footer-links a {
    color: rgba(234, 234, 234, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-links span {
    color: rgba(234, 234, 234, 0.6);
    opacity: 0.7;
}

/* 
 * 12. MODALS 
 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
}

.modal-overlay.visible {
    visibility: visible;
    opacity: 1;
}

.modal-content {
    background-color: var(--color-background);
    padding: 40px;
    border-radius: 8px;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.modal-content h3 {
    color: var(--color-primary);
    margin-bottom: 20px;
    font-size: 2rem;
}

.modal-content p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: rgba(234, 234, 234, 0.8);
}

.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.close-button:hover {
    color: var(--color-primary);
}

.testimonial-modal .modal-content {
    text-align: left;
}

/* 
 * 13. COOKIE BANNER 
 */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: auto;
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 0;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: var(--font-main);
    color: var(--color-text);
    width: 400px;
    max-width: calc(100% - 40px);
    display: none;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-banner.visible {
    display: block;
    animation: slideUp 0.5s ease-out forwards;
}

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cookie-banner-header {
    padding: 14px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.cookie-banner-header h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 600;
}

.cookie-banner-body {
    padding: 14px;
    flex-grow: 1;
    overflow-y: auto;
}

.cookie-banner-body p {
    margin: 0 0 14px 0;
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 100%;
}

.cookie-options {
    margin-bottom: 14px;
}

.cookie-option {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.cookie-option input[type="checkbox"] {
    margin-right: 8px;
    accent-color: var(--color-primary);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.cookie-option label {
    font-size: 0.85rem;
    line-height: 1.4;
    cursor: pointer;
}

.cookie-banner-links {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.cookie-banner-links a {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color var(--transition-fast);
}

.cookie-banner-links a:hover {
    color: var(--color-text);
    text-decoration: underline;
}

.cookie-banner-footer {
    padding: 14px;
    border-top: 1px solid var(--color-border);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn {
    padding: 8px 12px;
    border-radius: 5px;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid;
    flex: 1;
    min-width: 100px;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-background);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-primary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn-secondary:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-primary);
}

/* 
 * 14. ANIMATIONS & HELPERS 
 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

body.modal-open {
    overflow: hidden;
}

.privacy-policy-section {
    padding-top: 150px;
    padding-bottom: 120px;
}

.privacy-policy-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 40px;
    text-align: left;
}

.privacy-policy-content h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--color-primary);
    margin-top: 40px;
    margin-bottom: 20px;
}

.privacy-policy-content p,
.privacy-policy-content li {
    font-size: 1.1rem;
    max-width: 80ch;
    color: rgba(234, 234, 234, 0.9);
    margin-bottom: 15px;
}

.privacy-policy-content ul {
    list-style-position: inside;
    padding-left: 10px;
}

.privacy-policy-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

.privacy-policy-content a:hover {
    color: var(--color-text);
}

/* 
 * 15. MEDIA QUERIES 
 */
@media (max-width: 900px) {
    #o-mnie .container {
        flex-direction: column;
        text-align: center;
    }

    #o-mnie .about-me-header {
        text-align: center;
    }

    .cooperation-grid {
        grid-template-columns: 1fr;
    }

    #proces .timeline {
        left: 10px;
    }

    .process-step {
        width: 100%;
        padding: 0 0 0 40px;
        margin-left: 0 !important;
        text-align: left !important;
    }

    .process-step::after {
        left: 1px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .nav {
        display: none;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .header {
        padding-left: 20px;
        padding-right: 20px;
    }

    .mobile-nav-toggle {
        display: flex;
    }
    
    .cookie-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        width: calc(100% - 20px);
        max-width: none;
    }

    .cookie-banner-header {
        padding: 15px;
    }
    
    .cookie-banner-body {
        padding: 15px;
    }
    
    .cookie-banner-footer {
        padding: 15px;
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        min-width: auto;
    }
}