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

body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background-color: #2a2a2a;
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    margin: 20px;
}

.cookie-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cookie-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.cookie-content li {
    margin-bottom: 15px;
    padding-left: 0;
}

.cookie-content ul ul {
    margin-left: 20px;
    margin-top: 10px;
}

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

.btn-accept, .btn-decline {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #007bff;
    color: white;
}

.btn-accept:hover {
    background-color: #0056b3;
}

.btn-decline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #555;
}

.btn-decline:hover {
    background-color: #555;
}

/* Header */
.header {
    background-color: #1a1a1a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #333;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

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

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #007bff;
}

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

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

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: #1a1a1a;
}

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

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #cccccc;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

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

.hero-image img {
    width: 100%;
    border-radius: 10px;
}

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

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

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.about-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.about-text li {
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}

.about-text li::before {
    content: "•";
    color: #007bff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about-text p {
    color: #cccccc;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.services h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.services-text p {
    margin-bottom: 30px;
    color: #cccccc;
}

.services-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
}

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

.service-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.service-item p {
    color: #cccccc;
    font-size: 14px;
}

.services-image img {
    width: 100%;
    border-radius: 10px;
}

/* Blog Section */
.blog {
    padding: 80px 0;
    background-color: #222222;
}

.blog h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

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

.blog-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

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

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.blog-content p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
}

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

.contact h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

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

.contact-form input {
    padding: 15px;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #2a2a2a;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.contact-form input::placeholder {
    color: #999;
}

.contact-form input:focus {
    outline: none;
    border-color: #007bff;
}

.btn-submit {
    background-color: #007bff;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #0056b3;
}

/* Footer */
.footer {
    background-color: #111111;
    padding: 40px 0 20px;
}

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

.footer-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.footer-menu {
    display: flex;
    gap: 30px;
}

.footer-menu a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #007bff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #999;
}

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

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Success Page */
.success-section {
    padding: 100px 0;
    background-color: #1a1a1a;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.success-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #ffffff;
}

.success-details {
    background-color: #2a2a2a;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: left;
}

.success-details ul {
    list-style: none;
}

.success-details li {
    margin-bottom: 20px;
    padding-left: 0;
    color: #cccccc;
}

.success-details ul ul {
    margin-left: 20px;
    margin-top: 15px;
}

.success-details ul ul li {
    margin-bottom: 10px;
}

.success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background-color: transparent;
    color: #007bff;
    padding: 15px 30px;
    border: 2px solid #007bff;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #007bff;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #1a1a1a;
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid #333;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content,
    .about-content,
    .services-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-content,
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-menu {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-content {
        padding: 20px;
        margin: 10px;
    }

    .success-content h1 {
        font-size: 32px;
    }

    .success-details {
        padding: 20px;
    }

    .success-actions {
        flex-direction: column;
        align-items: center;
    }

    .success-actions a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 40px 0;
    }

    .about,
    .services,
    .blog,
    .contact {
        padding: 60px 0;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .about-text h2,
    .services h2,
    .blog h2,
    .contact h2 {
        font-size: 24px;
    }
}