:root {
      --blue: yellow;
      --dark: #1a1a1a;
      --light: #ffffff;
      --gray: black;
      --accent: #333;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background: var(--light);
      scroll-behavior: smooth;
      color: var(--accent);
    }

    header {
      background: var(--blue);
      padding: 1.5rem 2rem;
      position: sticky;
      top: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    header h1 {
      margin: 0;
      color: var(--dark);
      font-size: 1.8rem;
    }

    .caption {
      color: black;
      font-size: 16px;
      font-weight: normal;
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .nav-toggle span {
      height: 3px;
      width: 25px;
      background: var(--dark);
      margin: 4px 0;
      border-radius: 2px;
    }

    nav {
      display: flex;
      flex-wrap: wrap;
    }

    nav a {
      margin-left: 1.2rem;
      text-decoration: none;
      color: var(--dark);
      font-weight: 600;
      transition: color 0.2s;
    }

    nav a:hover {
      color: var(--accent);
    } 

    a {
      color: inherit;
    }

    button {
      padding: 20px;
      border: 0;
      border-radius: 50px;
      font-weight: bold;
      font-size: 30px;
      background: var(--blue);
      text-transform: capitalize;
    }


    .logo-home {
      min-width: 100px;
      max-width: 100px;
    }

    @media (max-width: 768px) {
      .nav-toggle {
        display: flex;
      }

      nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--blue);
        margin-top: 1rem;
      }

      nav a {
        margin: 1rem;
      }

      nav.active {
        display: flex;
      }
    }

    section {
      padding: 5rem 2rem;
      max-width: 1200px;
      margin: auto;
      border-bottom: 2px solid yellow;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 2rem;
      position: relative;
    }

    .section-title span {
      content: '';
      height: 4px;
      border-bottom: 2px solid var(--blue);
      bottom: -10px;
      left: 0;
    }

    .content {
      display: flex;
      flex-wrap: wrap;
      gap: 2.5rem;
      align-items: flex-start;
    }

    .content img {
      max-width: 100%;
      border-radius: 16px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      flex: 1 1 45%;
    }

    .text {
      flex: 1 1 45%;
    }

    .text p, .text ul {
      font-size: 1.1rem;
      line-height: 1.8;
    }

    .text ul {
      padding-left: 1.2rem;
    }

    .highlight {
      color: var(--black);
      font-weight: 600;
    }

    footer {
      background: var(--blue);
      text-align: center;
      padding: 2rem;
      font-weight: 600;
      font-size: 1rem;
    }


    @media (max-width: 500px) {

      .logo-home {
        min-width: 100%;
        max-width: 100%;
      }

      button {
        font-size: 20px; 
      }

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

      section { 

        padding: 20px 50px 30px 50px;

      }

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

      .section-title span {
        font-size: 30px; 
      }



    }
