/* ============================================
   Rammos Floral Structures - Main Stylesheet
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 14.5px;
    line-height: 1.7;
    color: #333;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
    color: #000;
}

ul {
    list-style: none;
}

/* === CSS CUSTOM PROPERTIES === */
:root {
    --color-black: #000;
    --color-white: #fff;
    --color-text: #333;
    --color-text-light: #666;
    --color-border: #ececec;
    --color-overlay: rgba(0, 0, 0, 0.42);

    --font-primary: 'Raleway', sans-serif;
    --font-accent: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;

    --container-width: 1200px;
    --section-padding: 80px;
    --gap: 20px;
    --logo-width: 175px;
}

/* === LAYOUT === */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-text);
}

h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 15px; letter-spacing: 2px; text-transform: uppercase; }

p {
    font-family: var(--font-body);
    margin-bottom: 1em;
}

/* === TOP BAR === */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-text);
    letter-spacing: 0.5px;
}

.lang-switch:hover {
    color: #000;
}

.header-contact-icon {
    font-size: 16px;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.header-contact-icon:hover {
    color: #000;
}

/* === HEADER === */
#site-header {
    position: relative;
    z-index: 100;
    background: var(--color-white);
}

.header-main {
    padding: 25px 0;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-social {
    flex: 1;
    display: flex;
    gap: 20px;
}

.header-social a {
    font-size: 16px;
    color: var(--color-text);
}

.header-social a:hover {
    color: #000;
}

.header-logo {
    flex: 1;
    text-align: center;
}

.header-logo img {
    display: inline-block;
    width: var(--logo-width);
}

.header-actions {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    color: var(--color-text);
}

/* === NAVIGATION === */
.main-nav {
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 15px 30px;
    color: var(--color-text);
    font-size: 14.5px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: var(--color-black);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu > li:hover > a::after,
.nav-menu > li.active > a::after {
    transform: scaleX(1);
}

.nav-menu > li > a i {
    font-size: 10px;
    margin-left: 5px;
}

.nav-menu > li:hover > a,
.nav-menu > li.active > a {
    color: var(--color-black);
}

/* Home page nav: same styling as other pages */

/* Dropdown */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 200;
}

.nav-menu > li:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--color-text);
    border-bottom: 1px solid #f5f5f5;
}

.submenu li a:hover,
.submenu li a.active {
    background: #f9f9f9;
    color: #000;
}

/* === MOBILE MENU === */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background: var(--color-white);
    overflow-y: auto;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.open .mobile-menu-panel {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--color-text);
}

.mobile-nav {
    flex: 1;
    padding: 10px 0;
}

.mobile-nav > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text);
    border-bottom: 1px solid #f5f5f5;
}

.mobile-nav .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    background: #f9f9f9;
}

.mobile-nav .has-submenu.open > .submenu {
    display: block;
}

.mobile-nav .submenu li a {
    padding-left: 40px;
    font-size: 13px;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid var(--color-border);
}

.lang-switch-mobile {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.mobile-social {
    display: flex;
    gap: 20px;
    padding-top: 15px;
}

.mobile-social a {
    font-size: 18px;
    color: var(--color-text);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: opacity 0.5s ease;
}

.hero-image.hidden {
    opacity: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-top {
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
}

.hero-center {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    color: var(--color-white);
}

.hero-tagline {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--color-white);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 60px;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 5px;
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--color-white);
}

/* === PAGE HERO (interior pages) === */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.page-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.page-hero-title {
    position: relative;
    z-index: 2;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--color-white);
    text-align: center;
}

/* === SECTIONS === */
.section {
    padding: var(--section-padding) 0;
}

.section-sm {
    padding: 40px 0;
}

.section-dark {
    background: #000;
    color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
    font-size: 28px;
    font-weight: 300;
}

.text-center {
    text-align: center;
}

/* === QUOTE SECTION (Home) === */
.quote-section {
    padding: 100px 20px;
    text-align: center;
    background: rgb(221, 208, 230);
}

.quote-text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text);
    max-width: 700px;
    margin: 0 auto 30px;
}

.quote-link {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text);
    text-decoration: underline;
}

.quote-link:hover {
    color: #000;
}

/* === CONTACT SECTION (Home) === */
.contact-section {
    padding: var(--section-padding) 0;
    text-align: center;
}

.contact-phones {
    font-family: var(--font-primary), sans-serif;
    font-size: 55px;
    font-weight: 900;
    line-height: 1.2em;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 20px;
}

.contact-address {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 20px;
}

.contact-section h2 {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-info-text {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-info-text a {
    color: var(--color-text);
}

.contact-info-text a:hover {
    color: #000;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    color: #fff;
    font-size: 16px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
    background: #000;
    color: #fff;
}

/* === MAP === */
.map-section {
    width: 100%;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* === BIO PAGE === */
.bio-section {
    padding: var(--section-padding) 0;
}

.bio-row {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.bio-row:last-child {
    margin-bottom: 0;
}

.bio-row-reverse {
    flex-direction: row-reverse;
}

.bio-image {
    flex: 0 0 50%;
}

.bio-image img {
    width: 100%;
}

.bio-text {
    flex: 1;
}

.bio-text h2 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
}

.bio-text p {
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 15px;
}

/* === COMPETITIONS LIST === */
.competitions-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.competition-item {
    display: flex;
    gap: 40px;
    align-items: center;
}

.competition-image {
    flex: 0 0 45%;
}

.competition-image img {
    width: 100%;
    display: block;
}

/* Competition slider */
.comp-slider {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #f5f5f5;
}

.comp-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.comp-slide.active {
    opacity: 1;
    z-index: 1;
}

.competition-image > img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #f5f5f5;
}

.comp-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 2;
}

.comp-arrow:hover {
    background: #fff;
}

.comp-prev {
    left: 10px;
}

.comp-next {
    right: 10px;
}

.competition-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 48px;
}

.competition-info {
    flex: 1;
}

.competition-info h2 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.competition-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-light);
}

/* === WEDDING DETAIL PAGE === */
.wedding-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-height: 70vh;
   
}

.wedding-hero-image {
    width: 100%;
    height: auto;
    display: block;
    z-index: 1;
}

.wedding-hero-content {
    position: absolute;
    z-index: 2;
    text-align: center;
    background: #fff;
    width: fit-content;
    margin: 0 auto 30px;
    padding: 30px 50px 5px;
     bottom: 10%; 
  left: 50%;
  transform: translateX(-50%);
    color: #333;
}

.wedding-hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-style: italic;
    font-size: 24px;
    color: #333;
    letter-spacing: 1px;
}

.wedding-hero-divider {
    width: 170px;
    height: 1px;
    background: #333;
    margin: 15px auto 0;
}

.wedding-hero-location {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.wedding-credits {
    background: #efe6de;
    min-height: 175px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}

.wedding-credits p {
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    max-width: 900px;
}

/* Wedding gallery: alternating 1 large + 4 small */
.wedding-gallery {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.wd-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

.wd-block-reverse {
    direction: rtl;
}

.wd-block-reverse > * {
    direction: ltr;
}

.wd-large {
}

.wd-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.wd-small {
    overflow: hidden;
}

.wd-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* === WEDDING CARDS GRID === */
.wedding-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.wedding-card {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.wedding-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.wedding-card:hover img {
    transform: scale(1.05);
}

.wedding-card-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    transition: background 0.4s ease;
    z-index: 2;
}

.wedding-card:hover .wedding-card-overlay {
    background: var(--color-overlay);
}

.wedding-card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.1);
    color: #fff;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 20px;
    text-align: center;
    line-height: 34px;
    z-index: 3;
}

/* === PRESS GRID === */
.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.press-item {
    display: block;
    position: relative;
    overflow: hidden;
    height: 500px;
    color: inherit;
    text-decoration: none;
}

.press-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.press-item:hover img {
    transform: scale(1.05);
}

.press-item-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    transition: background 0.4s ease;
    z-index: 2;
}

.press-item:hover .press-item-overlay {
    background: var(--color-overlay);
}

.press-item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.1);
    color: #fff;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 18px;
    text-align: center;
    z-index: 3;
}

/* === CONTACT PAGE === */
.contact-heading {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2em;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.contact-bottom {
    padding: 0 0 var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* Contact form */
.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--color-text);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-border);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #999;
}

.contact-form textarea {
    min-height: 225px;
    resize: vertical;
}

.contact-form button {
    display: inline-block;
    padding: 14px 40px;
    background: var(--color-black);
    color: var(--color-white);
    border: 1px solid var(--color-black);
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.contact-form button:hover {
    background: var(--color-white);
    color: var(--color-black);
}

.contact-form .form-message {
    padding: 12px 15px;
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
}

.contact-form .form-message.success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
    display: block;
}

.contact-form .form-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    display: block;
}

/* Honeypot */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}

/* === FOOTER === */
#site-footer {
    margin-top: 50px;
}

.footer-main {
    background: #f2f2f2;
    padding: 30px 0 20px;
    text-align: center;
}

.footer-logo {
    text-align: center;
    margin-bottom: 15px;
}

.footer-logo img {
    display: inline-block;
    width: 140px;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--color-text);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.15);
    color: #000;
}

.footer-copyright {
    background: #e9e9e9;
    padding: 15px 0;
    text-align: center;
}

.footer-copyright a {
    color: #000;
}

.footer-copyright a:hover {
    color: #333;
}

.footer-separator {
    color: #999;
    margin: 0 4px;
}

.footer-copyright p {
    font-size: 13px;
    color: #000;
    margin: 0;
}

/* === BACK TO TOP === */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-size: 20px;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.back-to-top:hover {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}

/* === UTILITY CLASSES === */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.page-title-section {
    background: #f2f2f2;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    text-align: center;
}

.page-title-section + .section {
    padding-top: 30px;
}

.page-title-section h1 {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #333;
}

.page-subtitle {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 15px;
    font-weight: 400;
    color: var(--color-text);
    padding-top: 10px;
}

/* === LEGAL PAGES === */
.legal-page {
    padding: var(--section-padding) 0;
}

.legal-page h1 {
    font-size: 28px;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

.legal-page h2 {
    font-size: 20px;
    margin: 30px 0 15px;
}

.legal-page p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 10px 0 20px 20px;
    list-style: disc;
}

.legal-page ul li {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 5px;
}
