@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --primary: #103c68;
  --primary-dark: #082945;
  --secondary: #d6ae45;

  --white: #ffffff;
  --background: #f6f8fb;

  --text: #1c2633;
  --text-light: #6d7885;

  --border: #e2e7ed;

  --container: 1200px;

  --radius-small: 12px;
  --radius-medium: 20px;
  --radius-large: 30px;

  --shadow:
    0 20px 50px rgba(18, 38, 63, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(
    var(--container),
    calc(100% - 40px)
  );

  margin: auto;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
}

.section {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 50px;
}

.section-title span {
  display: block;

  margin-bottom: 10px;

  color: var(--primary);

  font-size: 0.8rem;
  font-weight: 800;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title h2 {
  font-size: clamp(
    2.2rem,
    5vw,
    3.8rem
  );

  color: var(--primary-dark);

  line-height: 1.1;
}

.section-title p {
  max-width: 650px;

  margin-top: 15px;

  color: var(--text-light);
}

@media (max-width: 768px) {

  .section {
    padding: 70px 0;
  }

  .container {
    width: calc(100% - 28px);
  }

}