.legal-page{
    padding-top:170px;
}



/* Base Styles */
:root {
    --primary: #0A1A3A;
    --secondary: #D4AF37;
    --light-gold: #948029;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #333333;
    --white: #FFFFFF;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--light-gold));
    color: var(--primary);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary-blue {
    background: #0a1a3a;
    color: hsl(45.88deg 61.45% 51.18%);
}

.btn-secondary-blue:hover {
    transform: translateY(-3px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.section-title-white {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: #FFFFFF;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: var(--primary);
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 1rem auto;
}

/* Header Styles */
.header-main{
    display: flex;
        align-items: center;
        justify-content: space-between;
}


.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 26, 58, 0.95);
    padding: 0rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sticky-header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(10, 26, 58, 0.98);
}

.logo img {
    height: 130px;
    transition: all 0.3s ease;
}

.sticky-header.scrolled .logo img {
    height: 30px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 2rem;
}

.main-nav a {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
}

.main-nav a:hover:after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    /*background: url('../images/hero-bg.jpg') no-repeat center center/cover;*/
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
    overflow:hidden
}

.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    object-fit: cover;
    box-sizing: border-box;
}

.hero .container {
    position: relative;
    z-index: 2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center
    /*max-width: 800px;*/
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.subheadline {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Ethos Section */
.ethos-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.ethos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.ethos-card {
    background: var(--primary);
    color:#fff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ethos-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ethos-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.ethos-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* Philosophy Section */
.philosophy-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-content h3 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.philosophy-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

/* Manchester Section */
.manchester-section {
    padding: 6rem 0;
    position: relative;
    background-color: var(--primary);
    color: var(--white);
}

.manchester-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/manchester-bg.jpg') no-repeat center center/cover;
    opacity: 0.2;
    z-index: 0;
}

.manchester-section .container {
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary);
}

.section-intro {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.metrics-table {
    margin: 3rem 0;
}

.metrics-table h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--secondary);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 3rem;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

th {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--secondary);
}

.highlight {
    color: var(--secondary);
    font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.1rem;
}
.highlight1 {
    color: var(--secondary);
    font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.1rem;
}
.hero-statement {
    text-align: center;
    margin: 4rem 0;
}

.statement {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.supporting, .closing {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.section-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Why Enigma Section */
.why-enigma {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.section-headline {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

.why-content {
    max-width: 800px;
    margin: 0 auto;
}

.why-text {
    text-align: left;
    margin-bottom: 3rem;
}

.beliefs-list {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.belief-item {
    display: flex;
    align-items: center;
    /*margin-bottom: 2rem;*/
}


.belief-item {
    display: flex;
    align-items: center;
    /*margin-bottom: 2rem;*/
}

.belief-item p{
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0;
}
.belief-icon {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.closing-statement {
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
    color: var(--primary);
    margin-top: 3rem;
}

/* Partners Section */
.partners-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 3rem 0;
}

.partner-card {
    text-align: center;
}

.partner-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--secondary);
}

.partner-image img {
        width: 200px;
    height: 250px;
    object-fit: cover;
    box-sizing: border-box;
}

.partner-title {
    color: var(--secondary);
    font-weight: 500;
}

/* Contact CTA */
.contact-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary), var(--light-gold));
    color: var(--primary);
    text-align: center;
}

.cta-headline {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.contact-cta .btn-primary {
    background: var(--primary);
    color: var(--white);
}

.contact-cta .btn-primary:hover {
    background: var(--dark-gray);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.main-footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--secondary);
}

.address p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.address i {
    margin-right: 0.8rem;
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--primary);
}

.regulatory {
    font-size: 0.8rem;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}


/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .ethos-grid, .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.inner-btn{
    display: none;
}

.outer-btn{
    display: block;
    padding: 0.4rem 1rem;
}

@media (max-width: 768px) {
    .inner-btn{
        display: block;
    }    
    .outer-btn{
        display: none;
    }    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--primary);
        transition: all 0.3s ease;
        padding: 2rem;
        /* padding-top: 106px; */
        padding-top: calc(2rem + 80px);

        z-index: 9;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav li {
        margin: 1rem 0;
    }
    
    .mobile-menu-toggle {
        display: block;
        position: relative;
        z-index: 10;
    }
    
    .logo {
        position: relative;
        z-index: 10;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta, .section-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .ethos-grid, .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-table {
        overflow-x: auto;
    }
    
    table {
        min-width: 600px;
    }
}


