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

body {
    color: #333;
    line-height: 1.6;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 3%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav h1 {
    color: #1a73e8;
    font-weight: bold;
}

nav ul {
    list-style-type: none;
    display: flex;
}

nav ul li {
    margin-left: 1.5em;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

nav ul li a:hover {
    color: #1a73e8;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(to right, #1a73e8, #0066cc);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 1.5em;
}

.cta-btn {
    background-color: #ff5c5c;
    color: white;
    padding: 0.8em 1.5em;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #cc4949;
}

/* Section Styles */
section {
    padding: 4em 3%;
    text-align: center;
}

#services, #features, #testimonials, #contact {
    background-color: #f9f9f9;
}

h2 {
    color: #1a73e8;
    margin-bottom: 1em;
    font-size: 2.5em;
}

/* Grid Layouts */
.services-grid, .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1em;
    margin-top: 2em;
}

/* Service and Feature Cards */
.service, .feature {
    padding: 1.5em;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.service:hover, .feature:hover {
    transform: translateY(-5px);
}

/* Testimonials */
.testimonial {
    max-width: 600px;
    margin: 2em auto;
    padding: 1.5em;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1em;
}

.testimonial span {
    font-weight: bold;
}

/* Contact Form */
#contactForm input, #contactForm textarea, #contactForm button {
    width: 100%;
    padding: 1em;
    margin: 0.5em 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#contactForm button {
    background-color: #1a73e8;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contactForm button:hover {
    background-color: #005bb5;
}

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

/* Navigation and Other Sections Styles - Remain the Same */

/* Process Section */
#process {
    background-color: #f9f9f9;
    padding: 4em 3%;
    text-align: center;
}

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

.process-step {
    padding: 1.5em;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}
