* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background: #0052cc;
    color: white;
    padding: 20px 0;
}

header .logo img {
    width: 150px;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero-section {
    background: #ff6600;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-section h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cta-btn {
    background: white;
    color: #0052cc;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background: #ff6600;
    color: white;
}

section {
    padding: 60px 0;
}

h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

ul {
    list-style: none;
}

.grid {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.grid .pain-point, .grid .solution {
    width: 45%;
}

.service .timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service .timeline .step {
    background: #0052cc;
    color: white;
    padding: 20px;
    width: 30%;
    margin-bottom: 20px;
    border-radius: 10px;
    text-align: center;
}

.pricing {
    background: #f4f4f4;
}

.pricing-card {
    background: white;
    padding: 30px;
    margin: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact form input, .contact form button {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ddd;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: white;
    text-decoration: none;
}
