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

@font-face {
  font-family: 'Publico';
  src: url('../font/PublicoHeadline-Bold.otf');
}

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3 {
  font-family: 'Publico';
}

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

/* Header */
.header {
  background: #b8d8fd;
  padding: 20px 0;
}

.logo {
  height: 80px;
  width: auto;
}

/* Hero Section */
.hero {
  background: #b8d8fd;
  padding: 80px 0 100px;
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: 2.775rem;
  font-weight: 700;
  color: #101184;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #00008f;
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-phone {
  background: #e16525;
  color: white;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.btn-phone:hover {
  background: #c95520;
}

.btn-label {
  font-size: 0.875rem;
  font-weight: 400;
}

.btn-number {
  font-size: 1.5rem;
  font-weight: 700;
}

.btn-primary {
  background: #e16525;
  color: white;
}

.btn-primary:hover {
  background: #c95520;
}

.btn-primary svg {
  width: 20px;
  height: 20px;
}

.hero-hours {
  font-size: 1rem;
  color: #00008f;
  font-weight: 600;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
}

/* Features Section */
.features {
  background: white;
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #101184;
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 20px;
}

.feature-card img {
  width: 200px;
  height: auto;
  margin: 0 auto 30px;
  display: block;
}

.feature-card h3 {
  font-size: 1.25rem;
  color: #101184;
  font-weight: 600;
  line-height: 1.4;
}

/* Services Section */
.services {
  background: #f9f9f9;
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 70%;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
}

.service-card-angel {
  width: 30%;
  display: flex;
      flex-direction: column;
}

.service-card-angel img {
  width: 300px;
  margin: 0 auto;

}

.service-card-large {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.service-icon {
  width: 180px;
  height: auto;
  margin: 20px auto;
  display: block;
}

.service-title {
  font-size: 2rem;
  color: #101184;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-title-small {
  font-size: 1.125rem;
  color: #101184;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  min-height: 60px;
}

.service-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

/* Video Section */
.video-section {
  background: white;
  padding: 80px 0;
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #e5e5e5;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder svg {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-placeholder svg:hover {
  transform: scale(1.1);
}

/* CTA Footer Section */
.cta-footer {
  background: #101184;
  color: white;
  padding: 80px 0;
}

.cta-footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-text {
  text-align: left;
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 20px;
  font-weight: 400;
}

.cta-phone {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}

.cta-phone:hover {
  opacity: 0.9;
}

.cta-hours {
  font-size: 1.125rem;
  font-weight: 400;
}

.cta-image {
  display: flex;
  justify-content: center;
}

.cta-img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
}

/* Footer */
.footer {
  background: #f9f9f9;
  padding: 40px 0;
  text-align: center;
}

.disclaimer {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 15px;
}

.legal {
  font-size: 0.75rem;
  color: #999;
  line-height: 1.5;
}

.grid-all {
  display: flex;
  gap: 24px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content,
  .cta-footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-card-angel {
    width: 100%;

  }

  .grid-all {
    flex-direction: column;
  }

  .hero-image,
  .cta-image {
    text-align: center;
  }

  .hero-image img {
    max-width: 400px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .service-card-large {
    grid-column: span 2;
  }

  
}

@media (max-width: 768px) {

 

  .service-card-angel img {
    width: 180px;
  
  }

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

  .section-title {
    font-size: 1.75rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card-large {
    grid-column: span 1;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-phone {
    font-size: 2.5rem;
  }

  .cta-text {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 0 60px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }

  .features,
  .services,
  .video-section,
  .cta-footer {
    padding: 40px 0;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn-number {
    font-size: 1.25rem;
  }

  .cta-phone {
    font-size: 2rem;
  }

  .service-icon {
    width: 140px;
  }
}
