@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:wght@500;700&display=swap');

:root {
    /* Custom Theme Colors */
    --brand-main: #0B605E;      /* Deep Teal */
    --ui-base-light: #F9F6F0;   /* Warm Sand */
    --tone-highlight: #E07A5F;  /* Soft Coral */
    --text-dark: #202C39;       /* Navy Black */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0B605E 0%, #158A87 100%);
    --gradient-highlight: linear-gradient(135deg, #E07A5F 0%, #D45D3D 100%);
    --gradient-dark: linear-gradient(135deg, #202C39 0%, #131A22 100%);

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-text: 'Inter', sans-serif;
}

body {
    font-family: var(--font-text);
    color: var(--text-dark);
    background-color: var(--ui-base-light);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.joint-header-wrap {
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 50;
}

.mobile-nav-tray {
    display: none;
}

.mobile-nav-tray.open {
    display: block;
}

.cookie-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--text-dark);
    color: #ffffff;
    padding: 1rem;
    z-index: 9999;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-consent-bar a {
    color: var(--tone-highlight);
    text-decoration: underline;
}

.btn-cookie-accept {
    background-color: var(--tone-highlight);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-cookie-accept:hover {
    opacity: 0.9;
}

.btn-cookie-decline {
    background-color: #4B5563;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-cookie-decline:hover {
    opacity: 0.9;
}

.btn-primary-action {
    display: inline-block;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.btn-primary-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.numbered-circle-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.numbered-circle-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.circle-digit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.footer-disclaimer-box {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    font-size: 0.875rem;
    color: #9CA3AF;
    text-align: center;
}

.content-page-wrapper {
    flex-grow: 1;
    padding: 4rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.content-page-wrapper p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}