/* Reset and base styles */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
background-color: #f9f9f9;
color: #333;
}

a {
text-decoration: none;
color: inherit;
}

.container {
width: 90%;
max-width: 1100px;
margin: auto;
}

/* Header */
.header {
background-color: #0d6efd;
color: #fff;
padding: 20px 0;
}

.header .container {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-size: 24px;
font-weight: bold;
}

.nav a {
margin-left: 20px;
color: #fff;
font-weight: 500;
}

.nav a:hover {
text-decoration: underline;
}

/* Hero Section */
.hero {
background-color: #eaf3fb;
text-align: center;
padding: 80px 20px;
}

.hero h2 {
font-size: 36px;
margin-bottom: 10px;
color: #003c71;
}

.hero p {
font-size: 18px;
margin-bottom: 20px;
}

.btn {
display: inline-block;
background-color: #0d6efd;
color: #fff;
padding: 12px 25px;
border-radius: 5px;
transition: background-color 0.3s;
}

.btn:hover {
background-color: #0b5ed7;
}

/* Sections */
.section {
padding: 60px 0;
}

.section h2 {
text-align: center;
margin-bottom: 40px;
color: #003c71;
}

/* Services */
.service-list {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 20px;
}

.service-card {
background-color: #fff;
padding: 25px;
flex: 1;
min-width: 280px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
border-radius: 6px;
transition: transform 0.2s;
}

.service-card:hover {
transform: translateY(-5px);
}

.service-card h3 {
color: #0d6efd;
margin-bottom: 10px;
}

.service-card p {
font-size: 15px;
}

/* About */
.about p {
max-width: 800px;
margin: auto;
font-size: 16px;
line-height: 1.8;
}

/* Contact */
.contact-form {
max-width: 600px;
margin: auto;
display: flex;
flex-direction: column;
}

.contact-form input,
.contact-form textarea {
padding: 12px;
/* margin-bottom: 15px;*/
border: 1px solid #ccc;
border-radius: 4px;
font-size: 16px;
resize: vertical;
}

.contact-form button {
align-self: flex-start;
font-size: 16px;
}

/* Footer */
.footer {
background-color: #003c71;
color: #fff;
text-align: center;
padding: 20px 0;
font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
.header .container {
flex-direction: column;
}

.nav {
margin-top: 10px;
}

.service-list {
flex-direction: column;
}

.hero h2 {
font-size: 28px;
}

.hero p {
font-size: 16px;
}

.btn {
padding: 10px 20px;
}
}
