
/* General body styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f2f5;
    color: #333;
    margin: 0;
}

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

/* Header styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

/* Hero section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
}

.hero-text {
    max-width: 50%;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.hero-buttons .btn {
    margin-right: 10px;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.btn-secondary {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Contact info section */
.contact-info {
    display: flex;
    justify-content: space-around;
    padding: 40px 0;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-item {
    text-align: center;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
    color: #666;
}

/* Services section */
.services {
    padding: 60px 0;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.services > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.service-cards {
    display: flex;
    justify-content: space-around;
}

.card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 30%;
    text-align: left;
}

.card h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
}

.card p {
    font-size: 16px;
    color: #666;
}
