:root {
    --primary-color: #006eff; /* electric blue */
    --dark-color: #000000;
    --light-color: #ffffff;
    --bg-light: #f7f9fc;
    --text-color: #333333;
    --font-family: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.6;
}

/* Navbar & hero */
.hero {
    background: linear-gradient(135deg, var(--primary-color), #0050c3);
    color: var(--light-color);
    padding: 60px 20px 120px;
    position: relative;
}
.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar .logo {
    height: 50px;
}
.navbar .nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}
.navbar .nav-links a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 600;
}
.navbar .nav-links a:hover {
    text-decoration: underline;
}
.hero-content {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
}
.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}
.cta-buttons a {
    margin: 5px;
}

.btn {
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    transition: background-color 0.3s;
}
.btn.primary {
    background-color: var(--light-color);
    color: var(--primary-color);
}
.btn.primary:hover {
    background-color: #e6e6e6;
}
.btn.secondary {
    border: 2px solid var(--light-color);
    color: var(--light-color);
    background-color: transparent;
}
.btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Services section */
.services-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}
.services-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.service {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    flex: 1 1 300px;
    max-width: 350px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.service h3 {
    margin-top: 0;
}
.service .pricing {
    margin-top: 15px;
    font-weight: bold;
}

/* Testimonial */
.testimonial-section {
    padding: 60px 20px;
    background-color: var(--primary-color);
    color: var(--light-color);
    text-align: center;
}
.testimonial-section blockquote {
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
}
.testimonial-section cite {
    display: block;
    margin-top: 10px;
    font-weight: 600;
}

/* About */
.about-section {
    padding: 80px 20px;
    background-color: var(--light-color);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.about-section h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}
.about-section p {
    margin-bottom: 15px;
    font-size: 1rem;
}
.about-section .tagline {
    margin-top: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: var(--light-color);
    text-align: center;
}
.cta-section h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}
.cta-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Contact */
.contact-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
    max-width: 900px;
    margin: 0 auto;
}
.contact-section h2 {
    text-align: center;
    margin-bottom: 20px;
}
.contact-section .contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: center;
}
.contact-section .contact-info li {
    margin: 8px 0;
}
.contact-section .contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}
.contact-section .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}
.contact-section input,
.contact-section textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}
.contact-section button {
    align-self: center;
    cursor: pointer;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--dark-color);
    color: var(--light-color);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .services {
        flex-direction: column;
    }
    .navbar .nav-links {
        display: none; /* hidden nav for mobile; simple approach */
    }
}
