:root {
    /* Brand Colors */
    --primary-color: #009fe3;
    /* Cyan */
    --secondary-color: #E6007E;
    /* Magenta */
    --accent-color: #FFED00;
    /* Yellow */
    --text-color: #020A0A;
    /* Black */
    --bg-color: #FFFFFF;
    /* White */
    --light-gray: #f4f4f4;
    --dark-gray: #333333;

    /* Typography */
    --font-primary: 'Century Gothic', 'Questrial', 'Montserrat', sans-serif;
    --font-secondary: 'Olivier', 'Dancing Script', cursive;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Typography Helpers */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
}

.dancing-font {
    font-family: var(--font-secondary);
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #007bb0;
}

.btn-secondary {
    background-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #b30062;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 60px 0;
}

/* Header & Navigation */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 60px;
    /* Adjust based on logo aspect ratio */
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        background: white;
        width: 80%;
        height: calc(100vh - var(--header-height));
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border: 2px solid white;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
}

/* Legal Section */
.legal-section {
    background-color: #fcfcfc;
    border: 1px solid #eee;
    border-left: 5px solid #28a745;
    /* Green to match typical 'legal/trust' or the user image hint */
    padding: 30px;
    margin-top: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.legal-icon-wrapper {
    background-color: #28a745;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.legal-icon {
    font-size: 1.8rem;
    color: white;
}

.legal-content-left {
    flex: 1;
}

.legal-title {
    font-size: 1.4rem;
    color: #28a745;
    margin-bottom: 5px;
    font-weight: 700;
}

.legal-subtitle {
    color: #28a745;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.legal-content-right {
    text-align: right;
}

.legal-info-item {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 5px;
}

.legal-label {
    font-weight: 700;
    color: #000;
}

@media (max-width: 900px) {
    .legal-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .legal-content-right {
        text-align: center;
    }
}

/* Features Grid Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}