/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f8f8f8;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 15px 50px;
  border-bottom: 1px solid #ddd;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #c62828;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.signin-btn {
  background: #c62828;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.highlight {
  color: #2e7d32;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  padding: 12px 18px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

.btn.red {
  background: #c62828;
  color: #fff;
}

.btn.green {
  background: #2e7d32;
  color: #fff;
}

.btn.outline {
  background: transparent;
  border: 2px solid #333;
  color: #333;
}

/* Options Section */
.options {
  text-align: center;
  padding: 40px 20px;
}

.options h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #333;
}

/* Layout */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 30px;
}

/* Card Styles */
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 250px;
  transition: transform 0.2s;
}

.card:hover {
  transform: scale(1.03);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.content {
  padding: 20px;
}

.content h2 {
  margin-top: 0;
  color: #c2185b;
}

.content p {
  margin: 10px 0;
}

.content ul {
  list-style: none;
  padding: 0;
}

.content ul li {
  margin: 6px 0;
  padding-left: 20px;
  position: relative;
}

.content ul li::before {
  content: "✔";
  color: green;
  position: absolute;
  left: 0;
}

/* Button */
button {
  margin-top: 15px;
  background: #e91e63;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

button:hover {
  background: #c2185b;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #333;
}

/* Quote Section */
.quote-section {
  background: #fff;
  text-align: center;
  padding: 40px 20px;
  margin: 30px auto;
  max-width: 700px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.quote-section h2 {
  color: #c2185b;
  margin-bottom: 10px;
}

.quote-section p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #555;
}

/* Form */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.quote-form label {
  font-weight: bold;
}

.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.quote-form textarea {
  resize: none;
}

/* Button */
button {
  background: #e91e63;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #c2185b;
}


footer {
  background: #06080a;  /* dark navy blue */
  color: white;
  text-align: center;
  padding: 40px 20px;
  margin-top: 50px;
}

footer .brand {
  color: #ff7f50; /* orange-ish for logo text */
  font-weight: bold;
}

footer p {
  margin: 5px 0;
  font-size: 0.95rem;
}

footer .copyright {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #ccc;
}
a {
  text-decoration: none;
  color: inherit; /* optional: keeps your text color unchanged */
}