/* General Styles */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f7f7f7;
}

h1, h2, h3 {
    margin: 0;
}

/* Header Section */
.hero {
    background: linear-gradient(135deg, #2196F3, #64B5F6);
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    background-color: #ff9800;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e68900;
}

/* Main Content */
.container {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services {
    text-align: center;
    margin-bottom: 3rem;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2196F3;
}

.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin: 1rem auto;
    max-width: 300px;
}

.card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.card p {
    font-size: 1rem;
    color: #555;
}

.about {
    text-align: center;
    margin-bottom: 3rem;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2196F3;
}

.about p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.cta {
    text-align: center;
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 1.5rem 2rem;
    text-align: center;
}

.footer-content p {
    margin: 0.5rem 0;
}

.footer-content a {
    color: #ff9800;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #e68900;
}
