/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.9);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
}

nav ul {
    display: flex;
    list-style: none;
}

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

nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ccc;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero p {
    max-width: 800px;
    margin-bottom: 30px;
}

.hero-text-small {
    font-size: 0.9rem;
    max-width: 800px;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    margin: 10px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-arrow::after {
    content: "→";
    margin-left: 10px;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    background-color: #111;
}

.stats-left {
    width: 45%;
}

.stats-left h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.stats-left p {
    margin-bottom: 20px;
}

.stats-right {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-item {
    margin-bottom: 30px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 0.9rem;
    color: #ccc;
}

/* Features Section */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 50px;
}

.feature-card {
    width: 23%;
    background-color: #111;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    position: relative;
}

.feature-icon {
    font-size: 1.5rem;
    color: #fff;
    background-color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.9rem;
    color: #ccc;
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-top: 20px;
}

/* About Section */
.about {
    padding: 80px 50px;
    text-align: center;
}

.about p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 80px 50px;
    background-color: #111;
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
}

.contact p {
    max-width: 700px;
    margin: 0 auto 30px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-control {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 30px;
    background-color: #222;
    color: #fff;
}

/* Footer */
footer {
    padding: 30px 50px;
    background-color: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-links {
    display: flex;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    padding: 20px;
    background-color: #0a0a0a;
    font-size: 0.8rem;
    color: #777;
}

/* Thank You Page */
.thank-you {
    min-height: 80vh;
    padding: 100px 50px 50px;
}

.thank-you h1 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.thank-you p {
    margin-bottom: 20px;
    max-width: 800px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background-color: #000;
    border-radius: 15px;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: none;
}

.cookie-banner h2 {
    margin-bottom: 15px;
}

.cookie-banner p {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

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

.cookie-btn {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.accept-all {
    background-color: #fff;
    color: #000;
}

.reject-optional {
    background-color: transparent;
    border: 1px solid #333;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-card {
        width: 48%;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 15px;
    }
    
    nav ul li {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .stats {
        flex-direction: column;
    }
    
    .stats-left, .stats-right {
        width: 100%;
    }
    
    .stats-left {
        margin-bottom: 30px;
    }
    
    .feature-card {
        width: 100%;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}