/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.4;
    font-weight: bold;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    border-bottom: 4px solid #b2aeff;
    padding-bottom: 0.5rem;
    display: inline-block;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border: 3px solid;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.9rem;
}

.btn-primary {
    color: #b2aeff;
    border-color: #b2aeff;
}

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

.btn-secondary {
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #b2aeff;
    color: #000000;
    padding: 20px;
    z-index: 1000;
    border-top: 4px solid #000000;
}

.cookie-content h3 {
    margin-bottom: 10px;
}

.cookie-buttons {
    margin-top: 15px;
}

.cookie-buttons button {
    margin-right: 10px;
    margin-bottom: 10px;
}

.cookie-banner.hidden {
    display: none;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    background-color: #000000;
    margin: 5% auto;
    padding: 30px;
    border: 4px solid #b2aeff;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-buttons {
    margin-top: 20px;
}

.modal-buttons button {
    margin-right: 10px;
}

.cookie-category {
    margin: 15px 0;
}

.cookie-category label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.5);
}

.legal-content {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.legal-content h3 {
    margin-top: 20px;
    color: #b2aeff;
}

.close-modal {
    margin-top: 20px;
}

/* Header */
.header {
    background-color: #000000;
    border-bottom: 4px solid #b2aeff;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

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

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.nav a:hover {
    border-bottom-color: #b2aeff;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Banner Section */
.banner {
    background-color: #000000;
    padding: 120px 0 60px;
    border-bottom: 4px solid #b2aeff;
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.banner-text h1 {
    color: #b2aeff;
    margin-bottom: 20px;
}

.banner-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.banner-graphic img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* About Section */
.about {
    background-color: #ffffff;
    color: #000000;
    padding: 80px 0;
}

.about h2 {
    color: #000000;
    border-bottom-color: #b2aeff;
}

.about-content {
    margin-top: 40px;
}

.about-text h3 {
    color: #b2aeff;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    border: 3px solid #000000;
    padding: 20px;
    background-color: #ffffff;
}

.feature h4 {
    color: #b2aeff;
    margin-bottom: 10px;
}

/* Services Section */
.services {
    background-color: #000000;
    padding: 80px 0;
    border-top: 4px solid #b2aeff;
    border-bottom: 4px solid #b2aeff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    border: 3px solid #ffffff;
    padding: 30px;
    background-color: #000000;
    text-align: center;
}

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #b2aeff;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 8px 0;
    border-bottom: 1px solid #333333;
}

.service-card li:before {
    content: "▶ ";
    color: #b2aeff;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    background-color: #ffffff;
    color: #000000;
    padding: 80px 0;
}

.testimonials h2 {
    color: #000000;
    border-bottom-color: #b2aeff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.testimonial {
    border: 3px solid #000000;
    padding: 30px;
    background-color: #ffffff;
}

.testimonial blockquote {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial cite {
    color: #b2aeff;
    font-weight: bold;
    font-style: normal;
}

/* Blog Section */
.blog {
    background-color: #000000;
    padding: 80px 0;
    border-top: 4px solid #b2aeff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    border: 3px solid #ffffff;
    padding: 25px;
    background-color: #000000;
}

.blog-card h3 a {
    color: #b2aeff;
    text-decoration: none;
}

.blog-card h3 a:hover {
    text-decoration: underline;
}

.blog-card .date {
    color: #ffffff;
    font-size: 0.8rem;
    margin-top: 15px;
    display: block;
}

/* Blog Post Sections */
.blog-post {
    background-color: #ffffff;
    color: #000000;
    padding: 80px 0;
    display: none;
}

.blog-post:target {
    display: block;
}

.blog-post h2 {
    color: #000000;
    border-bottom-color: #b2aeff;
}

.blog-content {
    margin-top: 40px;
}

/* Contact Section */
.contact {
    background-color: #b2aeff;
    color: #000000;
    padding: 80px 0;
}

.contact h2 {
    color: #000000;
    border-bottom-color: #000000;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    text-transform: uppercase;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 3px solid #000000;
    background-color: #ffffff;
    color: #000000;
    font-family: inherit;
    font-size: 1rem;
    font-weight: bold;
}

.form-group input:focus {
    outline: none;
    border-color: #000000;
    background-color: #f0f0f0;
}

.subscription-form button {
    width: 100%;
    background-color: #000000;
    color: #b2aeff;
    border-color: #000000;
}

.subscription-form button:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Legal Section */
.legal {
    background-color: #000000;
    padding: 60px 0;
    border-top: 4px solid #b2aeff;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.legal-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.legal-link:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Footer */
.footer {
    background-color: #ffffff;
    color: #000000;
    padding: 60px 0 20px;
    border-top: 4px solid #b2aeff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #b2aeff;
    margin-bottom: 20px;
}

.footer-section address {
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a img {
    width: 30px;
    height: 30px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #000000;
}

/* Thanks Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
}

.thanks-content {
    text-align: center;
    border: 4px solid #b2aeff;
    padding: 60px;
    background-color: #000000;
}

.thanks-content h1 {
    color: #b2aeff;
    font-size: 4rem;
    margin-bottom: 30px;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.thanks-actions {
    margin-top: 40px;
}

.thanks-actions a {
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .banner {
        padding: 100px 0 40px;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .features-grid,
    .services-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cookie-buttons button {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 20px;
    }
    
    .thanks-content {
        padding: 40px 20px;
    }
    
    .thanks-content h1 {
        font-size: 2.5rem;
    }
    
    .thanks-actions a {
        display: block;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
    
    .banner {
        padding: 80px 0 30px;
    }
    
    .about,
    .services,
    .testimonials,
    .blog,
    .contact {
        padding: 50px 0;
    }
    
    .service-card,
    .testimonial,
    .blog-card {
        padding: 20px;
    }
    
    .modal-content {
        width: 95%;
        padding: 15px;
    }
}
