:root {
    --primary: #5E3E30;
    --secondary: #C4A1A1;
    --light: #FFF9F7;
    /* Lighter version of FEF4F1 */
    --accent: #FFE4DA;
    --text: #3C2E28;
    /* Slightly lighter than primary for better readability */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: var(--accent); */
    background-color: white;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 40px;
    height: 40px;
    margin-right: 0.4rem;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-title {
    color: var(--primary);
    font-size: 1.8rem;
    font-family: "Fredoka", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 1px;
}

.continue-booking {
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.continue-booking:hover {
    background-color: var(--secondary);
}

body {
    background-color: var(--light);
    color: var(--text);
    line-height: 1.8;
}

header {
    background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
    padding: 3rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 25px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 1.8rem;
    margin: 3rem 0 1.2rem;
    color: var(--primary);
    position: relative;
    font-weight: 600;
}

h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--primary);
    font-weight: 500;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 3px;
}

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

ul,
ol {
    margin: 1.2rem 0 1.8rem 2rem;
}

li {
    margin-bottom: 0.6rem;
    position: relative;
    padding-left: 5px;
}

li:before {
    content: '•';
    color: var(--secondary);
    position: absolute;
    left: -15px;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px dotted var(--secondary);
    padding-bottom: 1px;
}

a:hover {
    color: var(--primary);
    border-bottom-style: solid;
}

#redirect {
    text-decoration: none;
    color: inherit;
    border-bottom: none;
}

/* Content Cards */
.legal-card {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border-left: 3px solid var(--secondary);
}

/* Footer */
footer {
    background-color: var(--primary);
    color: white;
    padding: 2.5rem 0;
    margin-top: 4rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 25px;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--accent);
    border-bottom: none;
}

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

.copyright {
    font-size: 0.95rem;
    color: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--secondary);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    z-index: 99;
}

.back-to-top:hover {
    transform: translateY(-3px);
    background-color: var(--primary);
}

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