/* İstanbul Haftasonu Planlayıcı - Creative Design */

:root {
    --bosphorus-blue: #1e3a5f;
    --istanbul-turquoise: #2d7a8a;
    --terracotta: #c97d60;
    --golden-hour: #d4a574;
    --marble-white: #f5f3f0;
    --text-charcoal: #2c2c2c;
    --text-stone: #5a5a5a;
    --text-light: #6c757d;
    --shadow-soft: rgba(30, 58, 95, 0.1);
    --shadow-medium: rgba(30, 58, 95, 0.15);
}

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-charcoal);
    background: linear-gradient(180deg, #ffffff 0%, var(--marble-white) 100%);
    background-attachment: fixed;
}

/* Header with Istanbul-inspired design */
header {
    background: linear-gradient(135deg, var(--bosphorus-blue) 0%, var(--istanbul-turquoise) 100%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px var(--shadow-medium);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--golden-hour);
    text-decoration: none;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5), 0 0 10px rgba(212, 165, 116, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    display: inline-block;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--golden-hour) 0%, var(--terracotta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.logo:hover {
    transform: scale(1.08);
    color: var(--terracotta);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6), 0 0 15px rgba(201, 125, 96, 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--marble-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--marble-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.main-nav a::after {
    display: none;
}

.main-nav a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    text-decoration: none;
}

.main-nav a.active {
    background: rgba(255,255,255,0.25);
    font-weight: 600;
}

.main-nav a.active::before {
    display: none;
    content: none;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    min-height: calc(100vh - 350px);
}

/* Homepage Cards with Istanbul aesthetic */
.homepage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.card {
    background: var(--marble-white);
    border: none;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bosphorus-blue), var(--istanbul-turquoise), var(--terracotta));
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px var(--shadow-medium);
}

.card h3 {
    color: var(--bosphorus-blue);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--terracotta);
    border-radius: 2px;
}

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

.card li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(30, 58, 95, 0.1);
    transition: padding-left 0.3s;
}

.card li:last-child {
    border-bottom: none;
}

.card li:hover {
    padding-left: 0.5rem;
}

.card a {
    color: var(--text-charcoal);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.card a:hover {
    color: var(--istanbul-turquoise);
}

/* Category Listing with decorative elements */
.category-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.category-item {
    background: linear-gradient(135deg, var(--marble-white) 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--istanbul-turquoise);
    box-shadow: 0 3px 12px var(--shadow-soft);
    transition: all 0.3s;
    position: relative;
}

.category-item::before,
.category-item::after,
.category-item h3::before,
.category-item h3::after {
    display: none !important;
    content: none !important;
}


.category-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px var(--shadow-medium);
    border-left-color: var(--terracotta);
}

.category-item h3 {
    color: var(--bosphorus-blue);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.category-item h3 a {
    color: inherit;
    transition: color 0.3s;
}

.category-item h3 a:hover {
    color: var(--istanbul-turquoise);
}

/* Route Timeline with Istanbul style */
.route-timeline {
    margin: 3rem 0;
    position: relative;
    padding-left: 2rem;
}

.route-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--bosphorus-blue), var(--istanbul-turquoise), var(--terracotta));
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    position: relative;
    padding-left: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.75rem;
    top: 0.5rem;
    width: 14px;
    height: 14px;
    background: var(--golden-hour);
    border: 3px solid var(--marble-white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--bosphorus-blue);
}

.timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline-time {
    min-width: 110px;
    font-weight: 700;
    color: var(--bosphorus-blue);
    font-size: 1.1rem;
    background: var(--marble-white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px var(--shadow-soft);
}

.timeline-content {
    flex: 1;
    background: var(--marble-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 12px var(--shadow-soft);
}

.timeline-content h3 {
    color: var(--text-charcoal);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

/* Blog Article */
.blog-article {
    max-width: 800px;
    margin: 0 auto;
}

.article-content {
    background: var(--marble-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 6px 25px var(--shadow-soft);
    border-top: 4px solid var(--istanbul-turquoise);
}

.table-of-contents {
    background: linear-gradient(135deg, var(--marble-white) 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2.5rem 0;
    border-left: 5px solid var(--bosphorus-blue);
    box-shadow: 0 3px 12px var(--shadow-soft);
}

.table-of-contents ul {
    list-style: none;
    padding-left: 0;
}

.table-of-contents li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.table-of-contents li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--terracotta);
    font-weight: bold;
}

.table-of-contents a {
    color: var(--bosphorus-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.table-of-contents a:hover {
    color: var(--istanbul-turquoise);
}

/* Checklist */
.checklist {
    background: linear-gradient(135deg, var(--marble-white) 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 5px solid var(--golden-hour);
    box-shadow: 0 3px 12px var(--shadow-soft);
}

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

.checklist li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
}

.checklist li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--istanbul-turquoise);
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.5;
    top: 0.6rem;
}

/* Tables */
.info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    background: var(--marble-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 12px var(--shadow-soft);
}

.info-table th,
.info-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(30, 58, 95, 0.1);
}

.info-table th {
    background: linear-gradient(135deg, var(--bosphorus-blue) 0%, var(--istanbul-turquoise) 100%);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.info-table tr:hover {
    background: rgba(45, 122, 138, 0.05);
}

/* FAQ */
.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--marble-white);
    border-radius: 12px;
    box-shadow: 0 3px 12px var(--shadow-soft);
    border-left: 4px solid var(--istanbul-turquoise);
    transition: all 0.3s;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

.faq-item h3 {
    color: var(--bosphorus-blue);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, var(--marble-white) 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 16px;
    margin: 4rem auto;
    max-width: 700px;
    box-shadow: 0 6px 25px var(--shadow-soft);
    border-top: 4px solid var(--istanbul-turquoise);
}

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-stone);
    font-size: 1.05rem;
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-stone);
    margin-top: 1.5rem;
    text-align: center;
    font-style: italic;
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    max-width: 400px;
    border-left: 4px solid var(--istanbul-turquoise);
}

.notification.success {
    border-left-color: #28a745;
    background: #d4edda;
    color: #155724;
}

.notification.error {
    border-left-color: #dc3545;
    background: #f8d7da;
    color: #721c24;
}

/* Forms */
.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-charcoal);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid rgba(30, 58, 95, 0.2);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--marble-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--istanbul-turquoise);
    box-shadow: 0 0 0 3px rgba(45, 122, 138, 0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--bosphorus-blue) 0%, var(--istanbul-turquoise) 100%);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 15px var(--shadow-medium);
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-medium);
    background: linear-gradient(135deg, var(--istanbul-turquoise) 0%, var(--bosphorus-blue) 100%);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--text-charcoal) 0%, var(--bosphorus-blue) 100%);
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--golden-hour), var(--terracotta), var(--golden-hour));
}

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

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

.footer-section h4 {
    margin-bottom: 1.2rem;
    color: var(--golden-hour);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-section a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--golden-hour);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--text-charcoal) 0%, var(--bosphorus-blue) 100%);
    color: white;
    padding: 1.8rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    display: none;
    border-top: 3px solid var(--golden-hour);
}

.cookie-banner.active {
    display: block;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
}

.cookie-btn-accept {
    background: var(--golden-hour);
    color: var(--text-charcoal);
}

.cookie-btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn-settings {
    background: var(--istanbul-turquoise);
    color: white;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Cookie Settings Modal */
.cookie-settings {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    z-index: 1001;
    max-width: 650px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border-top: 4px solid var(--istanbul-turquoise);
}

.cookie-settings.active {
    display: block;
}

.cookie-settings h3 {
    color: var(--bosphorus-blue);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--marble-white);
    border-radius: 10px;
    border-left: 4px solid var(--istanbul-turquoise);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

input:checked + .cookie-slider {
    background: linear-gradient(135deg, var(--istanbul-turquoise), var(--bosphorus-blue));
}

input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Images */
main img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-soft);
    display: block;
    margin: 2rem auto;
}

.content-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-soft);
    margin: 1.5rem auto;
    display: block;
}

.content-image-left {
    float: left;
    max-width: 400px;
    width: 100%;
    margin: 1rem 2rem 1rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-soft);
}

.content-image-right {
    float: right;
    max-width: 400px;
    width: 100%;
    margin: 1rem 0 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-soft);
}

.image-container {
    text-align: center;
    margin: 2rem 0;
}

.image-container img {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow-soft);
    display: inline-block;
}

@media (max-width: 768px) {
    .content-image-left,
    .content-image-right {
        float: none;
        max-width: 100%;
        margin: 1.5rem auto;
        display: block;
    }
}

/* Typography */
h1 {
    color: var(--bosphorus-blue);
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1rem;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--istanbul-turquoise), var(--terracotta));
    border-radius: 2px;
}

h2 {
    color: var(--bosphorus-blue);
    margin: 2.5rem 0 1.2rem;
    font-size: 2.2rem;
    font-weight: 600;
}

h3 {
    color: var(--text-charcoal);
    margin: 1.8rem 0 0.9rem;
    font-size: 1.6rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-stone);
    font-size: 1.05rem;
}

ul, ol {
    margin: 1.5rem 0;
    padding-left: 2.5rem;
}

a {
    color: var(--istanbul-turquoise);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

a:hover {
    color: var(--bosphorus-blue);
    text-decoration: none;
}

/* Beautiful links with underline effect */
main a:not(.btn):not(.logo):not(nav a):not(.card a):not(.footer-section a) {
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

main a:not(.btn):not(.logo):not(nav a):not(.card a):not(.footer-section a):hover {
    border-bottom-color: var(--istanbul-turquoise);
    color: var(--bosphorus-blue);
}

/* Lists with beautiful markers */
main ul:not(nav ul):not(.card ul):not(.footer-section ul):not(.checklist ul):not(.table-of-contents ul) {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

main ul:not(nav ul):not(.card ul):not(.footer-section ul):not(.checklist ul):not(.table-of-contents ul) > li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.8;
}

main ul:not(nav ul):not(.card ul):not(.footer-section ul):not(.checklist ul):not(.table-of-contents ul) > li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--istanbul-turquoise);
    font-weight: bold;
    font-size: 1.1rem;
}

main ol {
    padding-left: 2rem;
    margin: 1.5rem 0;
}

main ol li {
    padding: 0.6rem 0;
    line-height: 1.8;
    color: var(--text-stone);
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--bosphorus-blue) 0%, var(--istanbul-turquoise) 100%);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 20px var(--shadow-medium);
    }

    .main-nav.active {
        max-height: 500px;
        opacity: 1;
        padding: 1.5rem 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 2rem;
    }

    .main-nav a {
        padding: 1rem;
        border-radius: 8px;
        margin-bottom: 0.5rem;
        display: block;
    }

    .main-nav a.active::before {
        display: none;
        content: none;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-buttons {
        justify-content: center;
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }

    .timeline-item {
        flex-direction: column;
        padding-left: 0;
    }

    .timeline-time {
        min-width: auto;
        width: 100%;
    }

    .route-timeline {
        padding-left: 1.5rem;
    }

    .route-timeline::before {
        left: -0.5rem;
    }

    .timeline-item::before {
        left: -1.25rem;
    }
}
