* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

html {
scroll-behavior: smooth;
}

body {
font-family: Arial, sans-serif;
background-color: #dbefff;
color: #333;
line-height: 1.7;
}

/* Navigation */

nav {
background: #ffffff;
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 8%;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.logo-container {
display: flex;
align-items: center;
gap: 15px;
}

.logo-image {
width: 70px;
height: 70px;
object-fit: contain;
}

.logo-text {
display: flex;
flex-direction: column;
}

.logo-text h2 {
color: #0056b3;
font-size: 1.6rem;
}

.logo-text span {
color: #666;
font-size: 0.85rem;
}

.nav-links {
display: flex;
list-style: none;
gap: 30px;
}

.nav-links a {
text-decoration: none;
color: #333;
font-weight: 600;
}

.nav-links a:hover {
color: #0056b3;
}

.hamburger {
display: none;
background: none;
border: none;
font-size: 2rem;
cursor: pointer;
color: #0056b3;
}

/* Hero */

.hero {
padding: 120px 8%;
text-align: center;
}

.hero-content {
max-width: 900px;
margin: auto;
}

.hero h1 {
font-size: 3.5rem;
color: #1f2937;
margin-bottom: 25px;
}

.hero p {
font-size: 1.2rem;
margin-bottom: 40px;
}

/* Sections */

section {
padding: 80px 8%;
}

.about,
.contact {
background: white;
margin: 30px 8%;
border-radius: 15px;
padding: 60px;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.services {
text-align: center;
}

section h2 {
text-align: center;
color: #0056b3;
margin-bottom: 25px;
font-size: 2.2rem;
}

section p {
max-width: 900px;
margin: 0 auto 20px;
text-align: center;
}

/* Services */

.service-box {
background: white;
max-width: 900px;
margin: 25px auto;
padding: 35px;
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-box h3 {
margin-bottom: 15px;
color: #1f2937;
}

/* Buttons */

.cta-button {
display: inline-block;
background: #666666;
color: white;
text-decoration: none;
padding: 18px 40px;
border-radius: 8px;
font-weight: bold;
transition: 0.3s;
}

.cta-button:hover {
background: #555555;
transform: translateY(-2px);
}

/* Footer */

footer {
background: #1f2937;
color: white;
text-align: center;
padding: 50px 20px;
}

footer h3 {
margin-bottom: 15px;
}

.footer-note {
margin-top: 20px;
color: #cbd5e1;
font-size: 0.9rem;
}

/* Tablet */

@media (max-width: 992px) {

```
.hero h1 {
    font-size: 2.8rem;
}

.about,
.contact {
    padding: 40px;
}
```

}

/* Mobile */

@media (max-width: 768px) {

```
.logo-text {
    display: none;
}

.logo-image {
    width: 55px;
    height: 55px;
}

.hamburger {
    display: block;
}

.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background: white;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nav-links.active {
    display: flex;
}

.hero {
    padding: 80px 20px;
}

.hero h1 {
    font-size: 2.2rem;
}

.hero p {
    font-size: 1rem;
}

section {
    padding: 60px 20px;
}

.about,
.contact {
    margin: 20px;
    padding: 30px 20px;
}

.service-box {
    padding: 25px;
}

.cta-button {
    width: 100%;
    max-width: 280px;
}
```

}

/* Small Phones */

@media (max-width: 480px) {

```
.hero h1 {
    font-size: 1.9rem;
}

section h2 {
    font-size: 1.8rem;
}

.logo-image {
    width: 50px;
    height: 50px;
}
```

}
