/* Base styles and reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

ul {
    list-style: none;
}

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

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #4d4dff;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #3c3cff;
}

.btn-dark {
    background-color: #222;
}

.btn-dark:hover {
    background-color: #000;
}

/* Header */
header {
    background-color: #4d4dff;
    color: white;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.3rem;
    font-weight: 700;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

/* Hero Section */
.hero {
    padding: 3rem 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
}

/* How We Work Section */
.how-we-work {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.work-intro {
    max-width: 700px;
    margin-bottom: 2rem;
}

.work-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.work-step {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    background-color: white;
}

.work-step h3 {
    color: #4d4dff;
    margin-bottom: 0.5rem;
}

/* Services Section */
.services {
    padding: 3rem 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-card {
    background-color: #4d4dff;
    color: white;
    border-radius: 8px;
    padding: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

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

.service-card ul li {
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: white;
}

.contact-button-container {
    text-align: center;
    margin-top: 2rem;
}

/* Team Image Section */
.team-image {
    margin: 3rem 0;
    text-align: center;
}

.team-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

/* Why Us Section */
.why-us {
    padding: 3rem 0;
    background-color: #4d4dff;
    color: white;
}

.why-us-points {
    margin-bottom: 3rem;
}

.point {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

/* Contact Form */
.contact-form {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

textarea {
    resize: vertical;
}

button[type="submit"] {
    border: none;
    cursor: pointer;
}

/* Thank You Page */
.thank-you {
    padding: 5rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

.thank-you h1 {
    margin-bottom: 1.5rem;
}

.thank-you p {
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: #4d4dff;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    margin-bottom: 0;
}

.footer-links ul, .footer-nav ul {
    display: flex;
    flex-direction: column;
}

.footer-links ul li, .footer-nav ul li {
    margin-bottom: 0.5rem;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .work-steps {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 1rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .work-steps {
        grid-template-columns: 1fr;
    }
    
    nav ul li {
        margin: 0 0.5rem;
    }
}