/* Basic Reset & Font Import */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* -- Accent Bar -- */
.accent-bar {
    height: 6px; /* Adjust height as needed */
    width: 100%;
    background: linear-gradient(to right, 
        #FF6600 0%, #FF6600 33.3%, 
        #f2f2f2 33.3%, #f2f2f2 66.6%, 
        #006400 66.6%, #006400 100%
    ); /* Orange, White, Dark Green */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001; /* Higher than header */
}


body {
    /* Keep Inter for body text */
    font-family: 'Inter', sans-serif;
    background-color: #FAF8F0; /* Off-white background */
    color: #111111; /* Dark text */
    line-height: 1.6;
    /* Increase padding-top to account for accent bar + header */
    padding-top: 86px; /* Approx accent bar height + header height */
}

/* Apply Black Ops One to headings, logo, nav, buttons, etc. */
h1, h2, h3, h4, h5, h6,
.logo,
nav ul li a, /* Apply to nav links */
.faq-question,
.apply-button,
.cta-heading,
.headline,
.quote,
.final-call,
footer p:first-child, /* Apply to "DRAFTING NOW" */
.styled-list li span /* Apply to [01] etc. */
{
    font-family: 'Black Ops One', cursive; /* Use Black Ops One */
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: normal; /* Font is inherently bold */
    letter-spacing: 1px; /* Add some spacing for stencil effect */
}

/* Specific adjustments for Black Ops One */
.logo {
    font-size: 1.7rem; /* Adjusted size */
}

nav ul li a {
    font-size: 1rem;
    padding-bottom: 5px;
    transition: border-bottom 0.2s ease-in-out;
}

a {
    color: #111111;
    text-decoration: none;
}

ul {
    list-style: none;
}

.nav-button {
    display: inline-block;
    background-color: #111111;
    color: #FAF8F0;
    padding: 10px 25px;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-family: 'Black Ops One', cursive;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-button:hover {
    background-color: #333333;
}
.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}



/* Header */
header {
    background-color: #FAF8F0;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #111111;
    position: fixed;
    /* Header starts below the accent bar */
    top: 6px; /* Match accent-bar height */
    left: 0;
    width: 100%;
    z-index: 1000; /* Below accent bar */
}


nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a.active {
    border-bottom: 3px solid #111111; /* Underline for active link */
    text-underline-offset: 8px; /* Adjust as needed */
}

nav ul li a:hover:not(.active) {
     border-bottom: 3px solid #ccc;
}

/* Main Content Area */
main {
    max-width: 900px;
    margin: 40px auto; /* Top margin below header */
    padding: 20px;
}

/* Home Page Specific Styles */
.home-content {
    text-align: center;
}

.headline {
    font-size: 3.2rem; /* Adjusted for Black Ops One */
    margin-top: 40px;
    margin-bottom: 30px;
}

.statistic {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif; /* Ensure body font */
}

.info-section {
    margin-bottom: 40px;
    text-align: left; /* Align list items left */
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    border: 1px solid #ddd; /* Optional border */
    border-radius: 5px;
}

.info-section h2 {
    font-size: 1.5rem; /* Adjusted */
    margin-bottom: 15px;
    text-align: center; /* Center section titles */
}
.info-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.info-container .info-section {
    flex: 1;
    margin-bottom: 0;
}


.styled-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif; /* List item text in Inter */
    display: flex; /* Use flexbox for alignment */
    align-items: baseline; /* Align based on text baseline */
}
.styled-list li span { /* Style for [01], [02] */
    font-family: 'Black Ops One', cursive; /* Number in Black Ops One */
    margin-right: 10px;
    display: inline-block;
    width: 40px; /* Ensure alignment */
    font-size: 1.1rem; /* Match surrounding text size */
    text-align: right; /* Align number to the right */
    flex-shrink: 0; /* Prevent shrinking */
}

.quote {
    font-size: 1.8rem; /* Adjusted */
    margin-top: 50px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-style: normal;
}

.cta-heading {
    font-size: 3rem; /* Adjusted */
    margin-top: 40px;
    margin-bottom: 20px;
    color: #FF6600; /* Accent color */
}

.apply-button {
    display: inline-block;
    background-color: #111111;
    color: #FAF8F0;
    padding: 15px 40px;
    font-size: 1.1rem; /* Adjusted */
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-bottom: 50px;
}

.apply-button:hover {
    background-color: #333333;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #555;
    font-family: 'Inter', sans-serif; /* Footer text in Inter */
}
footer p:first-child { /* "DRAFTING NOW" */
    font-family: 'Black Ops One', cursive; /* Use Font */
    text-transform: uppercase;
    font-size: 1rem; /* Adjusted */
    margin-bottom: 5px;
    color: #111; /* Make it black */
}


/* FAQ Page Specific Styles */
.faq-content h1 {
    font-size: 2.3rem; /* Adjusted */
    text-align: center;
    margin-bottom: 5px;
}

.subtitle {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif; /* Not bold */
    text-transform: none;
}

.faq-section {
    margin-bottom: 30px;
}

.faq-section h2 {
    font-size: 1.5rem; /* Adjusted */
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}

.faq-section h2 .icon {
    margin-right: 10px;
    font-size: 1.2em; /* Make icon slightly larger */
}


.faq-item {
    border: 1px solid #111111;
    margin-bottom: 10px;
}

.faq-question {
    background-color: transparent;
    border: none;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    font-size: 1rem; /* Adjusted */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* font-family: 'Black Ops One', cursive; Inherited */
    text-transform: none; /* Override default heading uppercase for questions */
}


.faq-question .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    font-family: 'Inter', sans-serif; /* Use standard font for arrow */
}

.faq-question.active .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px; /* Start with no padding top/bottom */
    background-color: #fff; /* Slightly different bg for contrast */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    font-size: 1rem; /* Regular text size */
    font-family: 'Inter', sans-serif; /* Ensure body font */
}

.faq-answer p, .faq-answer ul {
    margin-bottom: 15px;
}

.faq-answer ul {
    padding-left: 20px; /* Indent list */
    list-style: disc; /* Use standard bullets */
}
.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer strong {
     font-family: 'Inter', sans-serif;
     font-weight: 700; /* Bold Inter */
}
.faq-answer em {
     font-family: 'Inter', sans-serif;
     font-style: italic; /* Italic Inter */
}

.faq-answer.active {
    padding: 20px 20px; /* Add padding when active */
    max-height: 1000px; /* Adjust max-height as needed */
    transition: max-height 0.5s ease-in, padding 0.5s ease-in;
}

.closing-remark {
    margin-top: 40px;
    font-style: italic;
    text-align: center;
    font-size: 1.1rem;
    color: #333;
    font-family: 'Inter', sans-serif; /* Ensure body font */
}

/* Manifesto Page Specific Styles */
.manifesto-content {
    max-width: 800px; /* Slightly wider */
}

.manifesto-content h2 {
    font-size: 1.6rem; /* Adjusted */
    margin-top: 30px;
    margin-bottom: 15px;
}

.manifesto-bullets {
    list-style-type: disc; /* Explicitly sets the bullet style (disc, circle, square) */
    padding-left: 25px;    /* Adds indentation FROM THE LEFT for the bullets to appear */
    margin-top: 1em;       /* Adds space above the list */
    margin-bottom: 1.5em;  /* Adds space below the list */
}

.manifesto-bullets li {
    margin-bottom: 0.5em;  /* Adds vertical space BETWEEN bullet points */
    line-height: 1.4;      /* Improves readability if lines wrap */
}

.manifesto-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif; /* Ensure body font */
}

.final-call {
     font-size: 2rem; /* Adjusted */
     text-align: center;
     margin-top: 40px;
     color: #FF6600; /* Accent color */
}

/* Companies Page Specific Styles */
.companies-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.companies-content .headline {
    font-size: 2.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.company-card {
    border: 4px solid black;
    border-radius: 5px;
    padding: 25px 15px;
    text-align: center;
    margin: 10 px;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.company-name {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: 'Black Ops One', cursive;
    letter-spacing: 1px;
}

.company-logo {
    display: block;         /* Makes the image a block element for centering */
    height: 80px;           /* Set your desired uniform height */
    width: auto;            /* Allows width to adjust based on height & aspect ratio */
    max-width: 100%;        /* Prevents the image from exceeding card width */
    margin: 0 auto 15px auto; /* Centers horizontally (0 top/bottom, auto left/right) and adds 15px margin below */
    object-fit: contain;    /* Ensures the entire logo fits within the dimensions without stretching/cropping */
}

.company-description {
    font-size: 0.9em;      /* Adjust size as needed */
    color: #333;          /* Dark grey color */
    line-height: 1.5;      /* Increased slightly for better spacing around <br> */
    margin-top: 10px;      /* Space above the paragraph (after logo) */
    margin-bottom: 15px;   /* INCREASED: Space below the paragraph (before button) */
    padding-left: 5px;     /* Optional: slight indent */
    padding-right: 5px;    /* Optional: slight indent */
    font-weight: 400;      /* Ensure regular weight */
}

.company-link {
    display: inline-block;
    background-color: #111111;
    color: #FAF8F0;
    padding: 8px 15px;
    border-radius: 5px;
    font-family: 'Black Ops One', cursive;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.company-link:hover {
    background-color: #FF6600;
}

@media (max-width: 768px) {
    .info-container {
        flex-direction: column;
    }
    
    .info-container .info-section {
        margin-bottom: 40px;
    }
    
    .info-container .info-section:last-child {
        margin-bottom: 0;
    }

    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .company-name {
        font-size: 1.2rem;
    }
 .nav-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .nav-button {
        width: 80%;
        text-align: center;
    }
}


@media (max-width: 480px) {
    .companies-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .companies-content .headline {
        font-size: 1.8rem;
    }
}


/* Responsive Design - Adjust sizes for Black Ops One */
@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    nav ul {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    nav ul li a {
        font-size: 1rem;
        padding: 10px 15px;
    }

    .headline {
        font-size: 2.4rem;
        letter-spacing: 0.5px;
    }

    .quote {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
    }

    .cta-heading {
        font-size: 2.1rem;
    }

    .apply-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .info-container {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .info-container .info-section {
        flex: 1;
        margin-bottom: 0;
    }
    .info-section {
        padding: 15px;
    }
    
    .faq-content h1 {
        font-size: 1.8rem;
    }
    
    .faq-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 4px;
    }
    
    .accent-bar {
        height: 4px;
    }
    
    header {
        padding: 10px 5%;
        flex-direction: column;
        align-items: center;
        position: relative;
        top: 0;
        margin-top: 4px;
        border-bottom: 1px solid #111;
    }
    
    nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    nav ul li {
        margin: 5px 0;
    }
    
    nav ul li a {
        font-size: 1rem;
        padding: 10px 20px;
        display: block;
        text-align: center;
        width: 100%;
    }
    
    .headline {
        font-size: 1.8rem;
    }
    
    .quote {
        font-size: 1.1rem;
    }
    
    .cta-heading {
        font-size: 1.6rem;
    }
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #111111;
}

/* Responsive Design - Hamburger Menu */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  header {
    padding: 15px 5%;
    justify-content: space-between;
  }
  
  nav {
    position: fixed;
    left: -100%;
    top: 70px;
    gap: 0;
    flex-direction: column;
    background-color: #FAF8F0;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    border-bottom: 1px solid #111111;
    z-index: 999;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    width: 100%;
  }
  
  nav ul li {
    margin: 16px 0;
  }
}

@media (max-width: 480px) {
  header {
    flex-direction: row;
    justify-content: space-between;
  }
  
  nav {
    top: 53px; /* Adjust based on your header height */
  }
}

.logos-header-container {
    text-align: center; /* Centers the H2 within this container */
    margin-top: 50px;   /* Space above the header */
    margin-bottom: 20px;/* Space below the header, before the logos image */
}

.logos-header {
    display: inline-block; 
    font-family: 'Black Ops One', sans-serif; 
    font-size: 1.5em;     
    padding: 0; /* Remove padding if border is gone */ 
    /* border: 1px solid black; */ /* REMOVE or comment out this line */
    text-transform: uppercase; 
    letter-spacing: 1px;   
    margin: 0; 
    /* Add margin below if needed now border is gone */
    margin-bottom: 15px; /* Added space below heading text */
}

.logos-section {
    text-align: center; 
    margin-top: 0; /* Keep spacing relative to header */
    margin-bottom: 50px; /* Space below the bordered section */
    
    /* --- Adjustments --- */
    /* background-color: white; */ /* REMOVE or comment out this line */
    border: 4px solid black;   /* ADD this line */
    padding: 25px;             /* KEEP this - space between image and border */
    max-width: 840px;          /* KEEP this - adjust based on image width + padding */
    margin-left: auto;         /* KEEP this - centers the bordered box */
    margin-right: auto;        /* KEEP this - centers the bordered box */
}

.partner-logos-banner {
    max-width: 100%;    
    width: 800px;       
    height: auto;       
    display: block;     /* Changed to block for easier centering within padded parent */
    margin: 0 auto;     /* Center the image block within the .logos-section */ 
}

.cta-description {
    /* Add/Ensure font styling to match body text */
    font-family: 'Inter', sans-serif; /* Match your body font */
    font-weight: 400;             /* Ensure regular weight */
    font-size: 1.1em;             /* Adjust size if needed */
    color: #333;                  /* Match body text color */
    line-height: 1.6;             /* Match body text line height */

    /* Keep centering and width limit */
    max-width: 650px;            
    margin-left: auto;
    margin-right: auto;

    /* INCREASE bottom margin for more space before button */
    margin-top: 80px; 
    margin-bottom: 40px; /* INCREASED from previous value */
}
