:root {
    --primary-color: #0FFAD6;
    --dark-blue: #0D1728;
    --darker-blue: #0A121F;
    --text-color: #FFFFFF;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

body {
    background-color: var(--dark-blue);
    color: var(--text-color);
    line-height: 1.6;
}

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

/* Header */
header {
    background-color: var(--dark-blue);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn {
    background-color: var(--primary-color);
    color: var(--dark-blue);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0;
}

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

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 80px 0;
    background-color: var(--darker-blue);
}

section:nth-child(odd) {
    background-color: var(--dark-blue);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
}

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

.section-content.reverse {
    flex-direction: row-reverse;
}

.section-text {
    flex: 1;
}

.section-text h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-text p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.section-image {
    flex: 1;
    text-align: center;
}

.section-image img {
    max-width: 100%;
    border-radius: 8px;
}

/* Blog Section */
.blog-posts {
    margin-top: 40px;
}

.blog-post {
    margin-bottom: 20px;
}

.blog-post a {
    display: flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
}

.blog-post .icon {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 24px;
}

/* Testimonials */
.testimonials {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    flex: 1;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial .author {
    color: var(--primary-color);
    font-weight: bold;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-control {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

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

.submit-btn {
    background-color: var(--primary-color);
    color: var(--dark-blue);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    display: block;
    margin: 30px auto 0;
    transition: transform 0.3s;
}

.submit-btn:hover {
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--darker-blue);
    padding: 50px 0 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-color);
    margin: 0 15px;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.social-icons a {
    color: var(--text-color);
    margin: 0 10px;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.copyright {
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .section-content {
        flex-direction: column;
    }
    
    .section-content.reverse {
        flex-direction: column;
    }
    
    .testimonials {
        flex-direction: column;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 36px;
    }
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-blue);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 200;
    transform: translateY(-100%);
    transition: transform 0.3s;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu li {
    margin: 15px 0;
    list-style: none;
}

.mobile-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 24px;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 30px;
    cursor: pointer;
}