/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c2416;
    --secondary-color: #3d3320;
    --accent-color: #b8860b;
    --accent-gold: #d4af37;
    --gold-light: #f4e4bc;
    --gold-dark: #8b6914;
    --text-dark: #2c2416;
    --text-light: #6b6b6b;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --bg-dark: #2c2416;
    --border-color: #e0e0e0;
    --success-color: #8b6914;
    --warning-color: #b8860b;
    --error-color: #c0392b;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #b8860b 50%, #8b6914 100%);
    --gold-gradient-light: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.05));
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-color);
}

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

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 100px;
    width: auto;
    max-width: 450px;
    object-fit: contain;
    display: block;
}

.footer-logo {
    height: 50px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    display: block;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.5rem;
    display: inline-block;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--border-color);
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: var(--gold-gradient-light);
    color: var(--accent-color);
    padding-left: 1.75rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 0.5rem 0 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8125rem;
    margin-bottom: 0.25rem;
}

.breadcrumbs a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumbs a:hover {
    color: var(--accent-gold);
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumbs a:hover {
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    background: #1a1a1a;
    color: white;
    padding: 1rem 0 1.5rem;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

/* Animated Background Logos */
.animated-logos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 1;
}

.logo-bg {
    position: absolute;
    opacity: 0.25;
    filter: brightness(0) invert(1);
}

.bg-logo-img {
    width: 200px;
    height: auto;
    opacity: 0.6;
}

.logo-bg-1 {
    top: 10%;
    left: 5%;
    animation: float1 20s ease-in-out infinite;
}

.logo-bg-2 {
    top: 30%;
    right: 10%;
    animation: float2 25s ease-in-out infinite;
    animation-delay: -5s;
}

.logo-bg-3 {
    bottom: 20%;
    left: 15%;
    animation: float3 18s ease-in-out infinite;
    animation-delay: -10s;
}

.logo-bg-4 {
    top: 50%;
    right: 20%;
    animation: rotate1 30s linear infinite;
    animation-delay: -7s;
}

.logo-bg-5 {
    bottom: 10%;
    right: 5%;
    animation: float4 22s ease-in-out infinite;
    animation-delay: -12s;
}

.logo-bg-6 {
    top: 15%;
    left: 50%;
    animation: rotate2 35s linear infinite;
    animation-delay: -15s;
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -30px) rotate(5deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) rotate(-5deg) scale(0.9);
    }
    75% {
        transform: translate(20px, 30px) rotate(3deg) scale(1.05);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% {
        transform: translate(-40px, 40px) rotate(-8deg) scale(1.15);
    }
    66% {
        transform: translate(40px, -20px) rotate(8deg) scale(0.85);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(25px, -25px) rotate(-6deg) scale(1.08);
    }
    50% {
        transform: translate(-30px, 30px) rotate(6deg) scale(0.92);
    }
    75% {
        transform: translate(-15px, -20px) rotate(-3deg) scale(1.02);
    }
}

@keyframes float4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    30% {
        transform: translate(35px, 35px) rotate(7deg) scale(1.12);
    }
    60% {
        transform: translate(-25px, -35px) rotate(-7deg) scale(0.88);
    }
}

@keyframes rotate1 {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes rotate2 {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(-180deg) scale(0.9);
    }
    100% {
        transform: rotate(-360deg) scale(1);
    }
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0.5rem 0;
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
    text-transform: uppercase;
}

/* Hero Cards */
.hero-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    perspective: 1000px;
    position: relative;
}

.hero-card {
    width: 180px;
    height: 280px;
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transform-style: preserve-3d;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.hero-card:nth-child(1) {
    transform: rotateY(-15deg) rotateX(5deg) translateZ(0);
    background: linear-gradient(135deg, #f4e4bc 0%, #d4af37 100%);
}

.hero-card:nth-child(2) {
    transform: rotateY(-5deg) rotateX(5deg) translateZ(20px);
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    z-index: 2;
}

.hero-card:nth-child(3) {
    transform: rotateY(5deg) rotateX(5deg) translateZ(0);
    background: linear-gradient(135deg, #c0c0c0 0%, #808080 100%);
}

.hero-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.6;
}

.hero-card:hover {
    transform: translateY(-10px) scale(1.05);
    z-index: 10;
}

/* Membership Hero Layout */
.membership-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding: 0.5rem 0;
}

.membership-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.membership-card-display {
    display: flex;
    justify-content: center;
    align-items: center;
}

.membership-card-large {
    width: 280px;
    height: 360px;
    background: white;
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transform-style: preserve-3d;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    transform: rotateY(-10deg) rotateX(5deg);
}

.membership-card-large::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 40px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0.7;
}

.membership-card-large.card-basic {
    background: linear-gradient(135deg, #f4e4bc 0%, #d4af37 100%);
}

.membership-card-large.card-standard {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
}

.membership-card-large.card-premium {
    background: linear-gradient(135deg, #c0c0c0 0%, #808080 100%);
}

.membership-card-large .card-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) saturate(100%);
}

.membership-card-large.card-basic .card-logo-img {
    filter: brightness(0) saturate(100%) invert(1);
}

.membership-card-large .card-label {
    font-size: 1.75rem;
    margin-top: 1rem;
}

.membership-card-large .card-title {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.membership-card-large .card-subtitle {
    font-size: 1rem;
    margin-top: 0.75rem;
}

.membership-card-large .card-feature {
    font-size: 0.9375rem;
    margin-top: 1.5rem;
}

/* Membership Includes Section */
.membership-includes {
    padding: 4rem 0;
    background: white;
}

.membership-includes-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.includes-list {
    margin-bottom: 3rem;
}

.include-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.include-bullet {
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.include-content {
    flex: 1;
}

.include-content p {
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

.include-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.excludes-section {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--text-light);
}

.excludes-section h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

.excludes-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 1rem;
}

.excludes-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--text-light);
    font-weight: bold;
}

.card-logo {
    margin-bottom: 1rem;
}

.card-logo-img {
    height: 35px;
    width: auto;
    filter: brightness(0) saturate(100%);
}

.card-basic .card-logo-img {
    filter: brightness(0) saturate(100%) invert(1);
}

.card-label {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--primary-color);
}

.card-subtitle {
    font-size: 0.75rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.4;
}

.card-feature {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: auto;
    font-weight: 500;
    line-height: 1.3;
}

/* Fixed Sidebar */
.fixed-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--accent-color);
    border-radius: 8px 0 0 8px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
}

.sidebar-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-icon:last-child {
    border-bottom: none;
}

.sidebar-icon:hover {
    background: var(--accent-gold);
}

.sidebar-icon svg {
    width: 20px;
    height: 20px;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    cursor: pointer;
    z-index: 998;
    transition: all 0.3s;
}

.chat-widget:hover {
    background: var(--accent-gold);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.chat-widget svg {
    width: 28px;
    height: 28px;
}

/* Trust Bar */
.trust-bar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 0;
}

.trust-bar-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-stat {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.trust-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-title-left {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-intro {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.about-section p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.mission-intro {
    font-size: 0.875rem;
    color: var(--accent-color);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.values-list {
    margin-top: 2rem;
}

.value-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 2rem;
}

.value-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.value-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 4px;
    height: 2rem;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.value-item h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.disclaimer-box {
    background: var(--gold-gradient-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
    margin-top: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.disclaimer-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.disclaimer-box p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.disclaimer-box p:last-child {
    margin-bottom: 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

.check-mark {
    width: 24px;
    height: 24px;
    background: var(--gold-gradient);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    border: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.4);
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
}

.btn-primary:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
    border-width: 2px;
}

.btn-outline:hover {
    background: var(--gold-gradient);
    color: var(--primary-color);
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.features::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-image: url('logo_removed.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    animation: pulse 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.08;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.15;
    }
}

.features .container {
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.feature-icon-wrapper {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-icon {
    font-size: 3.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient-light);
    border-radius: 16px;
    margin: 0 auto;
    color: var(--accent-color);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Packages Preview */
.packages-preview {
    padding: 5rem 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.packages-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('logo_removed.png');
    background-repeat: repeat;
    background-size: 300px auto;
    opacity: 0.1;
    animation: backgroundMove 60s linear infinite;
    z-index: 0;
}

@keyframes backgroundMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 300px 300px;
    }
}

.packages-preview .container {
    position: relative;
    z-index: 1;
}

.section-title {
    text-transform: uppercase;
    font-size: 2rem;
    letter-spacing: 1px;
}

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

.package-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.package-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.package-card:hover::after {
    transform: scaleX(1);
}

.package-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
    transform: translateY(-10px);
}

.package-card.featured {
    border-color: var(--accent-color);
    border-width: 3px;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.05), white);
}

.package-card.featured::after {
    background: var(--gold-gradient);
    transform: scaleX(1);
}

.package-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-header {
    margin-bottom: 1.5rem;
}

.package-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 2.75rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.package-price span {
    font-size: 1.125rem;
    color: var(--text-light);
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

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

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

/* How It Works */
.how-it-works {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-light);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.contact-page {
    padding: 4rem 0 6rem;
    background: var(--bg-white);
    min-height: 80vh;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.contact-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 4rem 0 3rem;
    position: relative;
}

.page-header-badge {
    display: inline-block;
    background: var(--gold-gradient-light);
    border: 1px solid var(--accent-color);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.page-header h1 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.page-header p {
    font-size: 1.1875rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Packages Detail Page */
.packages-page {
    padding: 2rem 0 5rem;
}

.package-detail {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold-gradient);
}

.package-detail:hover {
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
    border-color: var(--accent-gold);
}

.package-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.package-detail-header h2 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.package-price-large {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    margin-top: 0.5rem;
}

.package-price-large span {
    font-size: 1.125rem;
    color: var(--text-light);
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.package-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.package-includes,
.package-excludes {
    background: var(--gold-gradient-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.package-includes h3 {
    color: var(--accent-color);
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.package-excludes h3 {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.package-includes ul,
.package-excludes ul {
    list-style: none;
}

.package-includes li,
.package-excludes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.package-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.package-excludes li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--text-light);
}


/* Retainer Benefits Section */
.benefits-section {
    margin: 4rem 0;
    padding: 3rem 0;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Comparison Table */
.comparison-section {
    margin: 4rem 0;
}

.comparison-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-table {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: var(--shadow);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--gold-gradient);
    color: var(--primary-color);
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

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

.comparison-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

/* Application Form */
.application-page {
    padding: 2rem 0 5rem;
    background-color: var(--bg-light);
}

.application-form {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-section {
    margin-bottom: 3.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3.5rem;
    width: 4px;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .form-section::before {
        display: none;
    }
    
    .form-section h2 {
        padding-left: 0;
        border-left: none;
        border-bottom: 3px solid var(--accent-color);
        padding-bottom: 0.5rem;
    }
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h2 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.01em;
    padding-left: 1rem;
    border-left: 4px solid var(--accent-color);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.required {
    color: var(--error-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    background: white;
}

.package-selection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-group {
    display: flex;
    align-items: flex-start;
}

.radio-group input[type="radio"] {
    margin-right: 1rem;
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.radio-label-content {
    display: flex;
    flex-direction: column;
}

.radio-label-content strong {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.radio-label-content span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.declarations {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.checkbox-group input[type="checkbox"] {
    margin-right: 1rem;
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-group label {
    cursor: pointer;
}

.checkbox-group a {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 600;
}

.checkbox-group a:hover {
    color: var(--accent-gold);
}

.info-box {
    background: var(--gold-gradient-light);
    padding: 1.75rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--accent-color);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.info-box a {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 600;
}

.info-box a:hover {
    color: var(--accent-gold);
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.form-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Info Pages */
.info-page,
.terms-page {
    padding: 2rem 0 5rem;
}

.info-content,
.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.info-section {
    margin-bottom: 3rem;
}

.info-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-section p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.info-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.highlight-box {
    background: var(--gold-gradient-light);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: var(--shadow);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.process-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.process-content h3 {
    margin-bottom: 0.5rem;
}

.faq {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
    border-color: var(--accent-gold);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-light);
}

/* Terms Page */
.terms-intro {
    background: var(--gold-gradient-light);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--accent-color);
}

.terms-intro p {
    margin-bottom: 1rem;
}

.terms-section {
    margin-bottom: 2.5rem;
}

.terms-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.terms-section p {
    margin-bottom: 0.75rem;
}

.terms-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
}

.package-terms {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.package-terms h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.terms-includes-excludes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.terms-includes-excludes h4 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.terms-includes-excludes ul {
    list-style: none;
    padding-left: 0;
}

.terms-includes-excludes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.terms-includes-excludes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.terms-signature {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.signature-block {
    background: var(--gold-gradient-light);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px dashed var(--accent-color);
}

.signature-block p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    position: relative;
    border-top: 3px solid var(--accent-color);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        margin-top: 0;
        padding-left: 1.5rem;
        background: transparent;
    }

    .dropdown-toggle::after {
        display: none;
    }

    .dropdown-menu a {
        padding: 0.5rem 0;
        border-bottom: none;
        font-size: 0.875rem;
    }

    .dropdown-menu a:hover {
        padding-left: 0;
        background: transparent;
    }

    .hero {
        padding: 1rem 0 2rem;
        min-height: auto;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .membership-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .membership-card-large {
        width: 280px;
        height: 420px;
        transform: none;
    }

    .membership-hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 1.75rem;
        text-align: center;
        margin-bottom: 1.25rem;
    }

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

    .hero-cards {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-card {
        width: 150px;
        height: 240px;
        padding: 1rem;
    }

    .hero-card:nth-child(1),
    .hero-card:nth-child(2),
    .hero-card:nth-child(3) {
        transform: none;
    }

    .fixed-sidebar {
        display: none;
    }

    .animated-logos {
        opacity: 1;
    }

    .logo-bg {
        opacity: 0.2;
    }

    .bg-logo-img {
        width: 120px;
        opacity: 0.5;
    }

    .logo-bg-1,
    .logo-bg-2,
    .logo-bg-3,
    .logo-bg-4,
    .logo-bg-5,
    .logo-bg-6 {
        animation-duration: 15s;
    }

    .chat-widget {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .trust-bar-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .trust-divider {
        width: 60px;
        height: 1px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title-left {
        font-size: 2rem;
        text-align: center;
    }

    .package-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .package-detail-content {
        grid-template-columns: 1fr;
    }


    .terms-includes-excludes {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .application-form {
        padding: 1.5rem;
    }

    .comparison-table {
        font-size: 0.875rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefits-section h2 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .logo-img {
        height: 70px;
        max-width: 320px;
    }

    .footer-logo {
        height: 40px;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 0.75rem 0 1.5rem;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .hero-cards {
        gap: 0.75rem;
    }

    .hero-card {
        width: 130px;
        height: 220px;
        padding: 0.75rem;
    }

    .card-label {
        font-size: 1rem;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }


    .breadcrumbs {
        font-size: 0.75rem;
    }

    .animated-logos {
        opacity: 1;
    }

    .logo-bg {
        opacity: 0.15;
    }

    .bg-logo-img {
        width: 100px;
        opacity: 0.4;
    }

    .logo-bg-4,
    .logo-bg-6 {
        display: none;
    }

    .membership-card-large {
        width: 240px;
        height: 360px;
        padding: 1.5rem;
    }

    .membership-includes-title {
        font-size: 1.75rem;
    }

    .include-content p {
        font-size: 1rem;
    }

    .logo-img {
        height: 50px;
        max-width: 250px;
    }

    .navbar {
        padding: 1rem 0;
    }
}


