
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: #003366;
  transition: color 0.3s ease;
}

a:hover {
  color: #6699cc;
}

ul {
  list-style: none;
}

/* Button Styles */
.btn {
  display: inline-block;
  background-color: #003366;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  margin: 10px 0;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #004d99;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn i {
  margin-right: 8px;
}

.btn-small {
  display: inline-block;
  background-color: #6699CC;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  text-align: center;
  font-size: 0.9rem;
  margin: 10px 0;
  transition: all 0.3s ease;
}

.btn-small:hover {
  background-color: #5588bb;
  transform: translateY(-2px);
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 1.8rem;
  color: #003366;
  display: flex;
  align-items: center;
}

.logo h1 i {
  margin-right: 10px;
  color: #6699CC;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #444;
  font-weight: 500;
  padding: 5px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

nav ul li a i {
  margin-right: 5px;
}

nav ul li a:hover, nav ul li a.active {
  color: #003366;
  border-bottom: 2px solid #003366;
}

/* Hero Section */
.hero {
  background-color: #003366;
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 51, 102, 0.9), rgba(0, 77, 153, 0.8));
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero p i {
  margin-right: 10px;
  color: #6699CC;
}

/* Main Content Areas */
main {
  padding: 40px 0;
}

section {
  margin-bottom: 40px;
}

section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #003366;
  display: flex;
  align-items: center;
  justify-content: center;
}

section h2 i {
  margin-right: 10px;
  color: #6699CC;
}

/* Card Icons */
.card-icon {
  font-size: 2.5rem;
  color: #6699CC;
  margin-bottom: 15px;
  text-align: center;
}

/* Services Overview */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.service-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

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

.service-card h3 {
  color: #003366;
  margin-bottom: 15px;
}

/* Call to Action */
.cta {
  background-color: #6699CC;
  padding: 60px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(102, 153, 204, 0.9), rgba(85, 136, 187, 0.8));
  z-index: 1;
}

.cta .container {
  position: relative;
  z-index: 2;
}

.cta h2 {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta h2 i, .cta p i {
  margin-right: 10px;
}

/* Form Styles */
form {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 0 auto;
}

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

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

label i {
  margin-right: 8px;
  color: #6699CC;
}

input, textarea, select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

input::placeholder, textarea::placeholder {
  color: #aaa;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #6699CC;
  box-shadow: 0 0 5px rgba(102, 153, 204, 0.3);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

button[type="submit"] {
  background-color: #003366;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

button[type="submit"] i {
  margin-right: 8px;
}

button[type="submit"]:hover {
  background-color: #004d99;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Contact Info Styles */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.contact-card {
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  font-size: 2rem;
  color: #6699CC;
  margin-bottom: 15px;
}

.whatsapp-link {
  color: #25D366;
  display: inline-flex;
  align-items: center;
}

.whatsapp-link i {
  margin-right: 5px;
}

/* Process Lists */
.process-list {
  list-style: none;
  counter-reset: process-counter;
  margin-bottom: 25px;
}

.process-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
  counter-increment: process-counter;
  display: flex;
  align-items: center;
}

.process-list li i {
  color: #6699CC;
  margin-right: 10px;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 30px auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: #6699CC;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-icon {
  width: 40px;
  height: 40px;
  background-color: #003366;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: -20px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.timeline-item:nth-child(even) .timeline-icon {
  left: -20px;
}

.timeline-content {
  padding: 20px;
  background-color: white;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
  margin-top: 0;
  color: #003366;
}

/* Team Highlight */
.team-highlight {
  background-color: #f0f7ff;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.team-icon {
  font-size: 3rem;
  color: #003366;
  margin-right: 20px;
}

/* Values List */
.values-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.values-list li i {
  margin-right: 10px;
  color: #6699CC;
  min-width: 20px;
}

/* Terms styling */
.terms-content {
  max-width: 800px;
  margin: 0 auto;
}

.last-update {
  font-style: italic;
  color: #777;
  text-align: right;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.last-update i {
  margin-right: 5px;
}

.term-item {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.term-item:last-child {
  border-bottom: none;
}

.term-item h3 {
  display: flex;
  align-items: center;
}

.term-item h3 i {
  margin-right: 10px;
  color: #6699CC;
}

.term-item ul {
  margin-left: 30px;
  margin-top: 10px;
}

.term-item ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.term-item ul li i {
  margin-right: 10px;
  min-width: 16px;
}

/* Benefits List */
.benefits-list, .checklist {
  margin: 20px 0;
}

.benefits-list li, .checklist li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.benefits-list li i, .checklist li i {
  margin-right: 10px;
  color: #6699CC;
  min-width: 20px;
}

/* Content Sections */
.content-section {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.content-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
  color: #003366;
  margin-bottom: 20px;
  text-align: left;
  display: flex;
  align-items: center;
}

.content-section h3 {
  color: #003366;
  margin: 25px 0 15px 0;
  display: flex;
  align-items: center;
}

.content-section h3 i {
  margin-right: 10px;
  color: #6699CC;
}

.content-section ul, .content-section ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

.content-section li {
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: #003366;
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

.footer-section h3 i {
  margin-right: 10px;
  color: #6699CC;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ddd;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.footer-section ul li a i {
  margin-right: 8px;
  color: #6699CC;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #6699CC;
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-card, .contact-card, .content-section, .timeline-item, .term-item {
  animation: fadeIn 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
  }
  
  nav ul {
    margin-top: 15px;
  }
  
  nav ul li {
    margin-left: 10px;
    margin-right: 10px;
  }
  
  .hero {
    padding: 40px 0;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item:nth-child(odd) {
    left: 0;
    text-align: left;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-icon {
    left: 10px;
    right: auto;
  }
  
  .timeline-item:nth-child(even) .timeline-icon {
    left: 10px;
  }
}

@media (max-width: 480px) {
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li {
    margin: 5px 10px;
  }
  
  .btn {
    display: block;
    width: 100%;
  }
  
  .content-section {
    padding: 20px;
  }
  
  .team-highlight {
    flex-direction: column;
    text-align: center;
  }
  
  .team-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
