@charset "UTF-8";
/* CSS Document */

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

body {
 font-family: "Google Sans", sans-serif;
  color: #111;
  line-height: 1.6;
}

p {
    font-size: 1.5em;
}

/* Layout */
.section {
  width: 100%;
  padding: 80px 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.center {
  text-align: center;
}

/* HERO */
.hero {
  background: #ffffff;
}

.logo {
  width: 60px;
  margin-bottom: 20px;
}

.logo.small {
  width: 45px;
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.subtitle {
  margin-top: 10px;
  color: #000;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
	font-size: 30px;
	line-height: 1.3em;
}

/* BLUE SECTION */
.blue {
  background: #1d56b3;
  color: white;
  font-size: 1.05rem;
}

/* STRIP */
.strip {
  background: #eee;
  font-weight: 500;
}

/* SERVICES */
.services {
  background: #c4e1fd;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.card img {
  width: 60px;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1rem;
  font-weight: 600;
}

/* CONTACT */
.contact {
  background: #f5f5f5;
}

.email {
  font-weight: 600;
  margin-top: 20px;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2rem;
  }

  .grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .section {
    padding: 100px 20px;
  }
}