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

body {
  font-family: "Roboto", sans-serif;
  background-color: #e0f7fa;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
  text-align: center;
}

header {
  background-color: #2196f3;
  padding: 20px 0;
}

.header-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 50px;
}

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

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #bbdefb;
}

main .content {
  width: 100%;
  height: calc(100vh - 100px);
}

main .content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.cookies {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #2196f3;
  color: #fff;
  padding: 15px 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.cookies button {
  background-color: #1976d2;
  border: none;
  color: #fff;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookies button:hover {
  background-color: #1565c0;
}

footer {
  background-color: #1976d2;
  color: #fff;
  padding: 40px 20px;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-logo img {
  height: 40px;
}

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

.footer-nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
  color: #bbdefb;
}

.footer-social a {
  text-decoration: none;
  color: #fff;
  margin-right: 15px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #bbdefb;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  padding: 20px;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.btn {
  background-color: #0077cc;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.btn:hover {
  background-color: #005fa3;
}

.about-agency {
  background-color: #fff;
  padding: 60px 20px;
}
.about-agency h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #0077cc;
}
.about-agency p {
  font-size: 1.1rem;
  color: #555;
}

.history-team {
  background-color: #f0faff;
  padding: 60px 20px;
}
.history-team h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #0077cc;
}
.history-team p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 15px;
}

.services-pricing {
  background-color: #fff;
  padding: 60px 20px;
}
.services-pricing h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #0077cc;
}
.services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  padding: 0 20px;
}
.services-list li {
  background-color: #e8faff;
  padding: 20px;
  border-radius: 8px;
}
.services-list li h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #005fa3;
}
.services-list li p {
  font-size: 1rem;
  color: #333;
}

.awards {
  background-color: #f0faff;
  padding: 60px 20px;
}
.awards h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #0077cc;
}
.awards-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.award {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.award img {
  width: 80px;
  margin-bottom: 15px;
}
.award p {
  font-size: 1rem;
  color: #555;
}

.contact-form {
  background-color: #fff;
  padding: 60px 20px;
}
.contact-form h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #0077cc;
}
.contact-form form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
}
.contact-form button {
  padding: 12px;
  background-color: #0077cc;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-form button:hover {
  background-color: #005fa3;
}

.detailed-services {
  background-color: #fff;
  padding: 60px 20px;
}
.detailed-services .container {
  max-width: 1200px;
  margin: 0 auto;
}
.detailed-services h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #0077cc;
  margin-bottom: 20px;
}
.detailed-services p {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}
.service-item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e0f7fa;
  padding-bottom: 40px;
}
.service-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.service-item img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  object-fit: cover;
}
.service-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.service-details h3 {
  font-size: 1.8rem;
  color: #005fa3;
  margin-bottom: 10px;
}
.service-details p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}
.service-features {
  list-style: disc inside;
  padding-left: 20px;
  color: #555;
  font-size: 0.95rem;
}
.service-features li {
  margin-bottom: 8px;
}
.service-pricing {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #0077cc;
  font-weight: bold;
}
@media (max-width: 768px) {
  .service-item {
    flex-direction: column;
    align-items: center;
  }
  .service-item img {
    max-width: 100%;
  }
  .service-details {
    align-items: center;
    text-align: center;
  }
}

.about-us {
  background-color: #f0faff;
  padding: 60px 20px;
}

.about-us .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-us h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #0077cc;
  margin-bottom: 40px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-intro {
  display: flex;
  gap: 30px;
  align-items: center;
}

.about-img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  object-fit: cover;
}

.intro-text h3 {
  font-size: 2rem;
  color: #005fa3;
  margin-bottom: 10px;
}

.intro-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.mission,
.vision-values,
.team-info {
  text-align: left;
}

.mission h3,
.vision-values h3,
.team-info h3 {
  font-size: 2rem;
  color: #005fa3;
  margin-bottom: 15px;
}

.mission p,
.team-info p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.vision-values ul {
  list-style: disc;
  padding-left: 20px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.vision-values ul li {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .about-intro {
    flex-direction: column;
    text-align: center;
  }
  .intro-text {
    text-align: center;
  }
}

.team-section {
  background-color: #f0faff;
  padding: 60px 20px;
}
.team-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.team-section h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #0077cc;
  margin-bottom: 20px;
}
.team-section p {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}
.team-members {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.team-member {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
}
.member-info h3 {
  font-size: 1.8rem;
  color: #005fa3;
  margin-bottom: 5px;
}
.member-info .position {
  font-size: 1.1rem;
  color: #0077cc;
  margin-bottom: 10px;
}
.member-info .bio {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .team-members {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }
  .team-member {
    flex: 1 1 calc(33.333% - 30px);
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .team-member img {
    margin-bottom: 20px;
  }
  .member-info h3,
  .member-info .position,
  .member-info .bio {
    text-align: center;
  }
}

.contact-info-form {
  background-color: #fff;
  padding: 60px 20px;
}

.contact-info-form .container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-form,
.contact-info {
  flex: 1 1 45%;
  background-color: #f0faff;
  padding: 20px;
  border-radius: 8px;
}

.contact-form h2,
.contact-info h2 {
  font-size: 2rem;
  color: #0077cc;
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  padding: 12px;
  background-color: #0077cc;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #005fa3;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

.contact-info li strong {
  color: #0077cc;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
  .contact-form,
  .contact-info {
    flex: 1 1 100%;
  }
}
