* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

div img {
  width: 100%;
  display: block;
}

:root {
  --primary-color: #007bff;
  --secondary-color: #6c757d;
  --font-base: "Roboto", sans-serif;
  --text-color: #333;
}

body {
  font-family: var(--font-base);
  color: var(--text-color);
  background-color: #fff;
  line-height: 1.6;
}

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

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.clearfix {
  clear: both;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}

.col {
  flex: 1;
  padding: 0 8px;
}

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

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

.text-right {
  text-align: right;
}

.d-flex {
  display: flex;
}

.bg-grey {
  background: #f1f1f1;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.btn {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: #545b62;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  line-height: 25px;
  font-weight: 500;
  letter-spacing: normal;
}

ul li {
  list-style: none;
}

.p-section {
  padding: 100px 0px 125px;
  height: 665px;
}
