  :root {
    --main-color: #213885;
    --main-color-dark: #081849;
    --main-color-light: #ECDFD2;
    --main-color-lighter: #CCCACC;
    --secondary-color: #5F3475;
    --secondary-color-light: #893172;
  }

  body {
    font-family: 'Roboto', sans-serif;
  }

  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
    color: white;
    text-align: center;
  }

  .hero h1 {
    font-size: 3rem;
    font-weight: bold;
  }

  .hero p {
    font-size: 1.25rem;
  }

  .nav-link {
    color: var(--main-color-lighter);
  }

  .portfolio-item {
    transition: transform 0.3s ease;
  }

  .portfolio-item:hover {
    transform: scale(1.05);
  }

  footer {
    background: #111;
    color: var(--main-color-lighter);
    padding: 20px 0;
    text-align: center;
  }

  .gallery div {
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .gallery div:hover {
    transform: scale(1.03);
  }

  .gallery div img {
    object-fit: cover;
  }

  .modal-img {
    width: 100%;
  }

  .section-lighter {
    background-color: var(--main-color-lighter);
  }

  .section-light {
    background-color: var(--main-color-light);
  }

  .list-styled-leaf, .list-styled-paw {
    list-style: none;
    margin: 0;
    padding: 0;

  }

  .list-styled-leaf li, .list-styled-paw li {
    position: relative;
    padding-left: 1.5rem;
  }

  .list-styled-leaf li:before {
    content: "\f06c";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #113129;
  }

  .list-styled-paw li:before {
    content: "\f1b0";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #c0d8cc;
  }