body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9fb;
    color: #333;
}
header {
    background-color: #1e88e5;
    color: white;
    padding: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}
header h1 {
    margin: 0;
    font-size: 2rem;
}
header p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}
nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    background-color: #1e88e5;
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}
nav a:hover {
    background-color: #0d47a1;
    color: white;
    border-radius: 5px;
}
.hero {
    text-align: center;
    padding: 2.5rem 1rem;
    background-color: #e3f2fd;
    margin-bottom: 2rem;
}
.hero h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.hero p {
    font-size: 1.2rem;
}
.section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.service {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.service h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.service p {
    font-size: 1rem;
    color: #555;
}
footer {
    background: #1e88e5;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}
footer a {
    color: #ffffff;
    text-decoration: underline;
}
.blog-section {
    padding: 2rem;
    margin: 2rem auto;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 900px;
}
.blog-section h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #333;
}
.blog-article {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.blog-article h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.blog-article p {
    font-size: 1rem;
    color: #555;
}
.blog-article a {
    text-decoration: none;
    color: #1e88e5;
    font-weight: bold;
}
.blog-article a:hover {
    text-decoration: underline;
}
main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
main article h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1e88e5;
}
main article h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    color: #333;
}
main article p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}
main article ul {
    list-style-type: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}
main article ul li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}
.contact {
    text-align: center;
    margin-top: 2rem;
}
.contact p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.contact a {
    color: #1e88e5;
    text-decoration: none;
    font-weight: bold;
}
.contact a:hover {
    text-decoration: underline;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}
.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #1e88e5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}
.social-links a:hover {
    background-color: #0d47a1;
}
