* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Top Bar */
.top-bar {
  background-color: #1abc9c;
  color: white;
  padding: 8px 0;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar .contact-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Main Navigation */
.main-nav {
  background-color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #1abc9c;
}

.cart {
  position: relative;
}

.cart span {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Sub Navigation */
.sub-nav {
  background-color: #2c3e50;
  padding: 10px 0;
}

.sub-nav .container {
  display: flex;
  justify-content: center;
}

.sub-nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.sub-nav ul li a {
  color: white;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 3px;
  transition: background 0.3s;
}

.sub-nav ul li a:hover,
.sub-nav ul li a.active {
  background-color: #1abc9c;
}

/* Breadcrumb */
.breadcrumb {
  background-color: #ecf0f1;
  padding: 10px 20px;
  font-size: 14px;
}

.breadcrumb a {
  color: #3498db;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.content-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.left-content {
  flex: 2;
  min-width: 300px;
}

.icon-shield {
  font-size: 4rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.left-content p {
  margin-bottom: 20px;
  font-size: 16px;
}

.right-form {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.right-form h3 {
  margin-bottom: 20px;
  color: #2c3e50;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.captcha {
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha img {
  height: 30px;
}

.btn-submit {
  width: 100%;
  padding: 12px;
  background-color: #1abc9c;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: #16a085;
}

/* Benefits Section */
.benefits-section {
  padding: 40px 20px;
  background-color: white;
}

.benefits-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.benefits-section p {
  margin-bottom: 20px;
  font-size: 16px;
}

.benefits-list,
.laws-list {
  margin-bottom: 20px;
  padding-left: 20px;
}

.benefits-list li,
.laws-list li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* Services Grid */
.services-grid {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.services-grid h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #2c3e50;
  text-align: center;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background: white;
  padding: 20px;
  border: 2px solid #1abc9c;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card .icon {
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.1rem;
  color: #2c3e50;
  margin: 0;
}

/* Footer */
footer {
  background-color: #1abc9c;
  color: white;
  padding: 15px 20px;
  text-align: center;
  font-size: 14px;
}

footer a {
  color: #fff;
  text-decoration: underline;
}

footer a:hover {
  color: #ecf0f1;
}

/* Responsive */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .sub-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}.sub-nav ul li a.active {
  background-color: #1abc9c;
  color: white;
  border-radius: 3px;
}

footer {
  background: linear-gradient(to right, #1a252f, #2c3e50);
  color: #ecf0f1;
  padding: 25px 0 15px;
  margin-top: 50px;
  font-size: 14px;
  line-height: 1.6;
}

.elegant-text {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-style: italic;
  margin-bottom: 12px;
  color: #f8f9fa;
}

.ceo-name {
  font-weight: bold;
  color: #1abc9c;
  font-family: 'Segoe UI', sans-serif;
  font-style: normal;
  display: inline-block;
}

.disclaimer {
  color: #95a5a6;
  font-size: 13px;
  margin: 0;
}

footer a {
  color: #1abc9c;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}




