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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
.navbar {
    background-color: #2c3e50;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.navbar .logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ecf0f1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #ecf0f1;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: #3498db;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #667eea;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

/* About Section */
.about {
    background-color: #f8f9fa;
}

.about p {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: center;
    color: #555;
}

/* Brands Section */
.brands {
    background-color: white;
}

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

.brand-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.brand-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.brand-tagline {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
    font-style: italic;
}

.brand-card p {
    color: #555;
    margin-bottom: 1.5rem;
}

.brand-link {
    display: inline-block;
    color: #667eea;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.brand-link:hover {
    color: #764ba2;
}

/* Approach Section */
.approach {
    background-color: #f8f9fa;
}

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

.approach-item {
    text-align: center;
    padding: 2rem;
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.approach-item p {
    color: #555;
}

/* Contact Section */
.contact {
    background-color: white;
    text-align: center;
}

.contact p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.contact-email a {
    color: #667eea;
    font-weight: 600;
}

.contact-email a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    margin-bottom: 0.5rem;
}

footer a {
    color: #3498db;
    transition: color 0.3s;
}

footer a:hover {
    color: #ecf0f1;
}

/* Brand Pages */
.brand-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.lucenci-hero {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #2c3e50;
}

.sillygoose-hero {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: #2c3e50;
}

.brand-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.brand-hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

.brand-intro {
    background-color: white;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    color: #555;
    line-height: 1.8;
}

.brand-focus {
    background-color: #f8f9fa;
}

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

.focus-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.focus-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.focus-item p {
    color: #555;
}

.brand-science {
    background-color: white;
}

.science-list {
    max-width: 900px;
    margin: 2rem auto;
    padding-left: 2rem;
}

.science-list li {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.1rem;
}

.science-list strong {
    color: #2c3e50;
}

.brand-commitment {
    background-color: #f8f9fa;
    text-align: center;
}

.brand-commitment p {
    max-width: 900px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: #555;
}

.commitment-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.badge {
    background-color: #667eea;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
}

.brand-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.brand-cta h2 {
    color: white;
}

.brand-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.brand-values {
    background-color: white;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    color: #555;
}

.brand-fun {
    background-color: #f8f9fa;
}

.brand-fun p {
    max-width: 900px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: #555;
}

.fun-list {
    max-width: 900px;
    margin: 2rem auto;
    padding-left: 2rem;
}

.fun-list li {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .brand-hero h1 {
        font-size: 2.5rem;
    }

    .brand-hero-subtitle {
        font-size: 1.2rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .brand-grid,
    .approach-grid,
    .focus-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}


/* Legal pages (Privacy, Terms) */
.legal-page {
    background-color: #fff;
    padding: 4rem 0;
}

.legal-page .container {
    max-width: 820px;
}

.legal-page h1 {
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.legal-page h2 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-top: 2.2rem;
    margin-bottom: 0.75rem;
    text-align: left;
}

.legal-page p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.75;
}

.legal-page a {
    color: #667eea;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #764ba2;
}

.legal-meta {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.legal-list {
    margin: 0 0 1rem 1.5rem;
    color: #555;
}

.legal-list li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

.legal-back {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

/* Footer legal links */
.footer-links {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #95a5a6;
}

.footer-links a {
    color: #95a5a6;
}

.footer-links a:hover {
    color: #ecf0f1;
    text-decoration: underline;
}

/* Regulatory footer block (Companies Act Sec 12(3)(c) particulars) */
.footer-regulatory {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.82rem;
    line-height: 1.55;
    color: #95a5a6;
}

.footer-regulatory p {
    margin: 0;
}

.footer-regulatory strong {
    color: #bdc3c7;
}

.footer-regulatory a {
    color: #95a5a6;
    text-decoration: underline;
}

.footer-regulatory a:hover {
    color: #ecf0f1;
}

.footer-button-link {
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

.footer-button-link:hover {
    color: #ecf0f1;
    text-decoration: underline;
}

/* Cookie / tracking consent banner */
#pl-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #1f2d3d;
    color: #ecf0f1;
    border-top: 3px solid #c9a96e;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    padding: 1.25rem 0;
}

.pl-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 720px) {
    .pl-consent-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }
}

.pl-consent-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #ecf0f1;
}

.pl-consent-text a {
    color: #f4d35e;
    text-decoration: underline;
}

.pl-consent-text strong {
    color: #fff;
}

.pl-consent-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.pl-consent-btn {
    appearance: none;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    min-width: 110px;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.pl-consent-btn-accept {
    background: #c9a96e;
    color: #1f2d3d;
    border-color: #c9a96e;
}

.pl-consent-btn-accept:hover,
.pl-consent-btn-accept:focus {
    background: #d8bb80;
    border-color: #d8bb80;
    outline: none;
}

.pl-consent-btn-reject {
    background: transparent;
    color: #ecf0f1;
    border-color: rgba(236, 240, 241, 0.4);
}

.pl-consent-btn-reject:hover,
.pl-consent-btn-reject:focus {
    background: rgba(236, 240, 241, 0.08);
    border-color: rgba(236, 240, 241, 0.7);
    outline: none;
}

.pl-consent-btn:focus-visible {
    outline: 2px solid #f4d35e;
    outline-offset: 2px;
}

