:root {
  --primary-color: #4a90e2;
  --secondary-color: #f0f4f8;
  --text-color: #333;
  --accent-color: #5cb85c;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background-color: var(--secondary-color);
  color: var(--text-color);
  line-height: 1.6;
  height: 100%;
}

.container {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: var(--primary-color);
  color: white;
  transition: left 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
}

nav.open {
  left: 0;
}

nav ul {
  list-style-type: none;
  padding: 20px 0;
  margin: 0;
}

nav ul li {
  padding: 15px 20px;
  transition: background-color 0.3s ease;
}

nav ul li:hover {
  background-color: rgba(255,255,255,0.1);
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  display: block;
}

main {
  padding: 70px 20px 20px;
  transition: margin-left 0.3s ease;
}

main.nav-open {
  margin-left: 250px;
}

h1, h2 {
  color: var(--primary-color);
}

.menu-toggle {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1001;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 5px;
}

.hero {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.hero h1 {
  color: white;
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  background-color: white;
  color: var(--primary-color);
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  color: var(--primary-color);
}

.testimonial {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.blogpost {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.testimonial-text {
  font-style: italic;
  font-size: 1rem;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.floating-icon {
  animation: float 3s ease-in-out infinite;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 999;
}

.overlay.active {
  display: block;
}