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

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #333;
}

h1, h2, h3 {
    margin-bottom: 15px;
}

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

ul {
    list-style: none;
}

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

.btn-primary {
    display: inline-block;
    background-color: #e76e34;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 3px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #d15a23;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 12px 30px;
    border: 1px solid white;
    border-radius: 3px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

section {
    padding: 60px 8%;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #0a0a3a;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo a {
    font-size: 24px;
    font-weight: bold;
}

.kapital {
    color: white;
}

.wissen {
    color: #e76e34;
}

nav ul {
    display: flex;
}

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

nav ul li a {
    color: white;
    transition: color 0.3s;
}

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

.mobile-menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0a0a3a;
    color: white;
    padding: 20px;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1200px;
    text-align: center;
}

.cookie-content h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

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

.cookie-content a {
    color: #e76e34;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(10, 10, 58, 0.8), rgba(10, 10, 58, 0.8)), url('./imgs/1.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
}

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

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Features Section */
.features {
    background-color: #0a0a3a;
    color: white;
    text-align: center;
}

.features h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
    font-size: 28px;
}

.features h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: #e76e34;
    bottom: -10px;
    left: 25%;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background-color: #151562;
    padding: 30px;
    border-radius: 5px;
    text-align: left;
}

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

/* About Us Section */
.about-us {
    background-color: #0a0a3a;
    color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

/* Services Section */
.services {
    background-color: #0a0a3a;
    color: white;
}

.services-container {
    display: flex;
    gap: 50px;
}

.services-image {
    flex: 1;
}

.services-content {
    flex: 1;
}

.services-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.service-item {
    margin-bottom: 25px;
}

.service-item h3 {
    color: white;
    margin-bottom: 10px;
}

/* Blog Section */
.blog {
    background-color: #0a0a3a;
    color: white;
    text-align: center;
}

.blog h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 28px;
}

.blog h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: #e76e34;
    bottom: -10px;
    left: 25%;
}

.blog-intro {
    max-width: 800px;
    margin: 0 auto 40px;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background-color: #151562;
    border-radius: 5px;
    overflow: hidden;
    text-align: left;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h3 {
    padding: 20px 20px 10px;
}

.blog-card p {
    padding: 0 20px 20px;
}

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

.contact h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 28px;
}

.contact h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: #e76e34;
    bottom: -10px;
    left: 25%;
}

.contact-intro {
    max-width: 800px;
    margin: 0 auto 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: none;
    border-radius: 3px;
    background-color: #f9f9f9;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: #050524;
    color: white;
    padding: 30px 8%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: white;
    transition: color 0.3s;
}

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

.footer-contact p {
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-container,
    .blog-container {
        grid-template-columns: 1fr;
    }

    .about-content,
    .services-container {
        flex-direction: column;
    }

    .about-image,
    .services-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 5%;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #0a0a3a;
        flex-direction: column;
        padding: 20px 0;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 0;
        padding: 10px 5%;
        text-align: center;
    }

    .mobile-menu-icon {
        display: block;
    }

    section {
        padding: 40px 5%;
    }

    .hero h1 {
        font-size: 32px;
    }

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

    footer {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }

    .feature-card,
    .blog-card {
        padding: 15px;
    }
}