* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #1f2933;
    line-height: 1.6;
    background-color: #ffffff;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* HEADER / NAVIGATION */
.site-header {
    background: #0f172a;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
}

.main-nav a:hover {
    color: #2563eb;
}

/* CTA in nav */
.nav-cta {
    background: #2563eb;
    padding: 8px 16px;
    border-radius: 4px;
    color: #ffffff !important;
    font-weight: bold;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: #1d4ed8;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
        display: none; /* will toggle via JS */
        background: #0f172a;
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 15px;
        border-radius: 8px;
    }

    .main-nav ul.show {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
        font-size: 1.8rem;
        color: #ffffff;
        cursor: pointer;
    }
}


/* HOMEPAGE HERO WITH BACKGROUND IMAGE */
.homepage-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('images/banner.jpg') no-repeat center center / cover;
    color: #ffffff;
    padding: 120px 20px;
    min-height: 80vh;
    overflow: hidden;
}

.homepage-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2,6,23,0.7); /* same dark overlay for readability */
    z-index: 1;
}

.homepage-hero .container {
    position: relative;
    z-index: 2; /* content above overlay */
    max-width: 800px;
}

/* Headline & paragraph */
.homepage-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.homepage-hero p {
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e5e7eb;
}

/* CTA button */
.homepage-hero .cta-button {
    padding: 14px 28px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.homepage-hero .cta-button:hover {
    background: #1d4ed8;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .homepage-hero {
        padding: 80px 15px;
    }

    .homepage-hero h1 {
        font-size: 2rem;
    }

    .homepage-hero p {
        font-size: 0.95rem;
    }

    .homepage-hero .cta-button {
        width: 100%;
        text-align: center;
    }
}


/* ABOUT BLANE SECTION */
.about-blane {
    padding: 80px 20px;
    background: #f9fafb;
    color: #1f2933;
}

.about-blane-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* equal columns */
    gap: 30px;
    align-items: center; /* vertically centers photo and text */
}

.about-blane-photo {
    display: flex; /* enables centering the image inside the column */
    justify-content: center; /* horizontal centering */
}

.about-blane-photo .blane-photo {
    width: 100%;
    max-width: 240px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-blane-text h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.about-blane-text p {
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1rem;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .about-blane-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-blane-photo .blane-photo {
        margin: 0 auto 20px auto;
        max-width: 200px;
    }
}

/* SECTIONS */
.section {
    padding: 70px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    border: 1px solid #e5e7eb;
    padding: 25px;
    border-radius: 6px;
    background: #f9fafb;
}

/* NEWSLETTER */
.newsletter {
    background: #f1f5f9;
    text-align: center;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-form input {
    padding: 12px;
    width: 260px;
    max-width: 90%;
    margin-right: 10px;
}

.newsletter-form button {
    padding: 12px 22px;
    background: #0f172a;
    color: #ffffff;
    border: none;
    cursor: pointer;

}

.newsletter-form button:hover {
    background: #020617;
}

.consent-text {
    display: block;
    margin-top: 12px;
    font-size: 0.85rem;
    color: #475569;
}

/* FOOTER */
.footer {
    background: #020617;
    color: #cbd5e1;
    text-align: center;
    padding: 30px 0;
}

.footer .disclaimer {
    font-size: 0.85rem;
    margin-top: 10px;
}
/* NEWSLETTER HERO WITH BACKGROUND GRAPHIC */
.newsletter-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('images/chart-bg.jpg') no-repeat center center / cover;
    color: #ffffff;
    padding: 120px 20px;
    min-height: 80vh;
    overflow: hidden;
}

/* DARK OVERLAY FOR READABILITY */
.newsletter-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2,6,23,0.7); /* subtle dark layer over image */
    z-index: 1;
}

.newsletter-hero .container {
    position: relative;
    z-index: 2; /* bring content above overlay */
    max-width: 700px;
}

/* HERO ICON */
.hero-graphic {
    margin-bottom: 25px;
}

/* Headline & paragraph */
.newsletter-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter-hero p {
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e5e7eb;
}

/* Newsletter form */
.newsletter-hero .newsletter-form input {
    padding: 14px;
    width: 300px;
    max-width: 100%;
    margin-right: 10px;
    border-radius: 4px;
    border: none;
}

.newsletter-hero .newsletter-form button {
    padding: 14px 28px;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.newsletter-hero .newsletter-form button:hover {
    background: #1d4ed8;
}

/* Consent text */
.newsletter-hero .consent-text {
    display: block;
    margin-top: 15px;
    font-size: 0.85rem;
    color: #cbd5e1;
}

/* Back to homepage link */
.back-home {
    margin-top: 25px;
}

.newsletter-hero a {
    color: #2563eb;
    text-decoration: none;
    font-weight: bold;
}

.newsletter-hero a:hover {
    text-decoration: underline;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .newsletter-hero {
        padding: 80px 15px;
    }

    .newsletter-hero h1 {
        font-size: 2rem;
    }

    .newsletter-hero .newsletter-form input,
    .newsletter-hero .newsletter-form button {
        width: 100%;
        margin: 5px 0;
    }

    .newsletter-hero p {
        font-size: 0.95rem;
    }
}



.social-links {
    margin-top: 15px;
}
.social-links a {
    color: #ff0000; /* YouTube red as example */
    margin-right: 15px;
    font-size: 24px;
    transition: transform 0.2s;
}
.social-links a:hover {
    transform: scale(1.2);
}


.promo-note {
    font-size: 1.1rem;
    color: #ffd700;
    font-weight: bold;
    margin: 20px 0;
}

.kit-checkout-wrapper {
    text-align: center;
    margin: 30px auto;
    max-width: 360px; /* keeps button neat on desktop + mobile */
}

.kit-embed-clean {
    background: none !important; /* removes Kit’s white background */
    padding: 0 !important;
    margin: 0 auto !important;
    text-align: center;
}

.kit-button.custom-cta {
    display: inline-block;
    width: 100%;
    max-width: 360px;
    padding: 18px 0;
    font-size: 1.15rem;
    font-weight: bold;
    text-align: center;
    color: #fff !important;
    background-color: #2c7be5 !important;
    border-radius: 10px;
    text-decoration: none !important;
    box-shadow: 0 6px 18px rgba(44, 123, 229, 0.4);
    transition: background 0.3s ease, transform 0.2s ease;
}

.kit-button.custom-cta:hover {
    background-color: #1a5bb8 !important;
    transform: translateY(-2px);
}

/* ================================
   CONTACT PAGE (FIXED + CLEAN)
================================ */

/* HERO */
.contact-hero {
    background: linear-gradient(180deg, #0f2a44 0%, #123a5f 100%);
    padding: 120px 20px 90px;
    text-align: center;
    color: #ffffff;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.contact-hero p {
    color: #e5e7eb;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* SECTION BACKGROUND */
.contact-section {
    background: #f2f6fb;
    padding-bottom: 90px;
}

/* CARD */
.contact-form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);

    max-width: 620px;
    margin: -60px auto 0; /* pulls card into hero */
}

/* INTRO TEXT */
.contact-form-card h2 {
    text-align: center;
    margin-bottom: 10px;
}

.contact-intro {
    text-align: center;
    margin-bottom: 30px;
    color: #475569;
}

.contact-intro a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.contact-intro a:hover {
    text-decoration: underline;
}

/* FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

/* BUTTON */
.primary-button {
    margin-top: 10px;
    padding: 16px;
    font-size: 1.05rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #2563eb;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
}

.primary-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

/* FOOTNOTE */
.form-note {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 15px;
    text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 30px 24px;
        margin-top: -40px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }
}




.newsletter-hero{
  display: flex;
  align-items: left;
  gap: 40px;
}

/* Image column */
.newsletter-hero img{
  width: 25%;
  max-width: 260px;   /* prevents it from getting huge on large screens */
  height: auto;
  border-radius: 16px;
  flex-shrink: 0;
}

/* Text column */
.newsletter-content{
  width: 75%;
}

/* Mobile: stack vertically */
@media (max-width: 768px){
  .newsletter-hero{
    flex-direction: column;
    text-align: center;
  }

  .newsletter-hero img{
    width: 60%;
    max-width: 220px;
  }

  .newsletter-content{
    width: 100%;
  }
}