/* Global Styles */
:root {
    --primary-color: #be2e21;
    --text-color: #333;
    --dark-bg: #121212;
    --light-bg: #ffffff;
    --gray-bg: #f2f2f2;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Antonio', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

p {
    margin: 15px 0;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

.btn {
    display: inline-block;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    font-family: 'Antonio', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    transition: var(--transition);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
}

.btn:hover {
    opacity: 0.9;
}

section {
    padding: 60px 0;
}

/* Cookie Popup */
.cookie-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 100%;
    max-width: 400px;
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-container.active {
    display: block;
}

.cookie-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.cookie-content p {
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-buttons .btn {
    width: 100%;
    text-align: center;
}

/* Header */
header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
    padding-right: 20px;
}

.hero-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-form {
    flex: 1;
    background-color: var(--dark-bg);
    color: white;
    padding: 30px;
}

.hero-form h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    font-family: 'Antonio', sans-serif;
}

form button {
    width: 100%;
    margin-top: 10px;
}

/* Why We Exist Section */
.why-we-exist {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
}

.section-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.image-container {
    flex: 1;
}

.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.text-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* Who's Behind Section */
.whos-behind {
    background-color: var(--dark-bg);
    color: white;
    padding: 60px 0;
}

/* Where We're Useful Section */
.where-useful {
    background-color: white;
    padding: 60px 0;
}

.where-useful h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.useful-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.useful-text {
    flex: 1;
    min-width: 300px;
}

.useful-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.useful-benefits {
    flex: 1;
    min-width: 300px;
}

.useful-benefits ul {
    list-style: none;
    margin-top: 20px;
}

.useful-benefits li {
    margin-bottom: 10px;
}

/* Insight Hub Section */
.insight-hub {
    background-color: var(--dark-bg);
    color: white;
    padding: 60px 0;
}

.insight-hub h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.insight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background-color: var(--dark-bg);
    border: 1px solid #333;
    padding: 25px;
    position: relative;
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.card p:first-of-type {
    font-weight: 500;
    margin-bottom: 15px;
}

.arrow-link {
    font-size: 24px;
    margin-top: auto;
    align-self: flex-start;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text, .hero-form {
        width: 100%;
        padding: 20px;
    }
    
    .section-content {
        flex-direction: column;
    }
    
    .image-container, .text-content {
        width: 100%;
    }
    
    .useful-content {
        flex-direction: column;
    }
    
    .useful-text, .useful-image, .useful-benefits {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .insight-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

html {
    scroll-behavior: smooth;
}

.thank-section {
    padding: 200px 0px;
    text-align: center;
}

.main-section h1 {
    font-family: Antonio;
font-weight: 700;
font-size: 36px;
line-height: 110.00000000000001%;
letter-spacing: -2%;
text-align: center;
margin-bottom: 40px;
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-form h2 {
        font-size: 24px;
    }
    
    .text-content h2 {
        font-size: 28px;
    }
    
    .text-content h3 {
        font-size: 22px;
    }
    
    .cookie-container {
        width: calc(100% - 40px);
        max-width: none;
    }
}