/* Global Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f9;
  color: #333;
  text-align: center;
}

/* Navigation Menu */
.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 15px 0;
}

.nav-menu li {
  display: inline;
}

.nav-menu a {
  text-decoration: none;
  font-weight: bold;
  color: #333;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #ff4444; /* your brand red */
}


/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  background: #fff;
  border-bottom: 2px solid #ff4444;
}

.logo {
  max-width: 200px;
  height: auto;
}

/* Navigation */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  text-decoration: none;
  font-weight: bold;
  color: #333;
  transition: color 0.3s;
}
.nav-menu a:hover {
  color: #ff4444;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: #f4f4f9;
}
.hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.hero .accent {
  color: #ff4444;
}
.tagline {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
}
.intro {
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}
.btn {
  display: inline-block;
  background: #ff4444;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}
.btn:hover {
  background: #cc0000;
}

/* Footer */
footer {
  text-align: center;
  background: #fff;
  padding: 20px;
  border-top: 1px solid #ddd;
  margin-top: 40px;
  font-size: 14px;
  color: #666;
}


/* Main Content */
main {
  padding: 40px 20px;
}
h2 {
  color: #ff4444;
  margin-bottom: 10px;
}
p {
  max-width: 700px;
  margin: 0 auto 20px auto;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-block;
  background: #ff4444;
  color: #fff;
  padding: 12px 24px;
  margin: 10px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  transition: background 0.3s;
}
.btn:hover {
  background: #cc0000;
}
.btn.secondary {
  background: #333;
}
.btn.secondary:hover {
  background: #555;
}
/* Call-to-action button */
.cta-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #ff4444;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-btn:hover {
  background: #cc0000;
}


/* Footer */
footer {
  margin-top: 40px;
  padding: 20px;
  background: #fff;
  border-top: 1px solid #ddd;
  font-size: 14px;
  color: #666;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.service-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: box-shadow 0.3s;
}

.service-card h2 {
  color: #ff4444;
  margin-bottom: 10px;
}

.service-card p {
  margin-bottom: 15px;
}

.service-card a {
  display: inline-block;
  padding: 8px 15px;
  background: #ff4444;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.service-card a:hover {
  background: #cc0000;
}

.service-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 20px auto;
}

.contact-form label {
  margin-top: 10px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  margin-top: 15px;
  padding: 10px;
  background: #ff4444;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #cc0000;
}

.contact-info {
  margin-top: 40px;
  text-align: center;
}

