body {
      font-family: 'Inter', sans-serif;
      background-color: #fffdfc;
      margin: 0;
      padding: 0;
      color: #333;
    }

    .social-links a {
      color: #fff;
      margin: 0 0.5rem;
      text-decoration: none;
      font-weight: 500;
    }


    header {
      background: linear-gradient(to right, #283e51, #485563);
      color: white;
      padding: 2rem;
      text-align: center;
    }

    header h1 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }

    header p {
      font-size: 1.1rem;
      opacity: 0.8;
    }

    nav {
      top: 0;
      background-color: #fff;
      z-index: 1000;
      padding: 1rem;
      display: flex;
      justify-content: center;
      gap: 2rem;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    /* Mobile-specific override */
    @media (max-width: 767px) {
      nav {
        font-size: 1rem;
      }
    }

    nav a {
      text-decoration: none;
      color: #2b2d42;
      font-weight: 600;
      transition: 0.2s ease-in-out;
    }

    nav a:hover {
      color: #ef476f;
    }

    .cta-buttons {
      margin-top: 1rem;
    }
    .cta-buttons .btn {
      background: #ef476f;
      color: white;
      padding: 0.6rem 1.2rem;
      border-radius: 6px;
      margin: 0.3rem;
      text-decoration: none;
      display: inline-block;
    }
    .cta-buttons .btn:hover {
      background: #d03d60;
    }
    section {
      max-width: 1000px;
      margin: auto;
      padding: 1rem 2rem;
    }

    h2 {
      color: #2b2d42;
      border-bottom: 2px solid #ddd;
      padding-bottom: 0.5rem;
      margin-bottom: 1.5rem;
    }

    .blog-post {
      background: #fdfdfd;
      padding: 1.5rem;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      margin-bottom: 2rem;
    }

    .blog-post h3 {
      margin-bottom: 0.5rem;
      color: #ef476f;
    }

    .blog-post p {
      color: #444;
    }

    .footer {
      background: #2b2d42;
      color: white;
      text-align: center;
      padding: 2rem;
    }

    .tagline {
      font-style: italic;
      opacity: 0.7;
    }

    form input,
    form textarea {
      width: 100%;
      padding: 0.75rem;
      margin-bottom: 1rem;
      border: 1px solid #ccc;
      border-radius: 6px;
    }

    form button {
      background-color: #ef476f;
      color: white;
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 6px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    form button:hover {
      background-color: #d03d60;
    }

    .form-container {
      max-width: 100%;
      width: 100%;
      padding-right: 1.5rem;
      box-sizing: border-box;
    }

    /* ABOUT SECTION */
    .about {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .about img {
      max-width: 200px;
      border-radius: 12px;
    }

    /* MEDIA QUERIES */
    @media (min-width: 768px) {

      .about {
        flex-direction: row;
        text-align: left;
      }

    }

    .hero {
      position: relative;
      overflow: hidden;
    }

    .hero img {
      width: 100%;
      object-fit: cover;
    }

    /* On desktop: reduce size */
    @media (min-width: 1024px) {
      .hero img {
        width: 87%; /* or any size you prefer */
        display: block;
        margin: 0 auto; /* center the image */
      }
    }


.hero-cta {
  text-align: center;
  margin-top: 2rem;
}
.btn-primary {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background-color: #1e88e5; /* medium blue */
  color: white;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
  box-shadow: 0 4px 10px rgba(30, 136, 229, 0.2);
}

.btn-primary:hover {
  background-color: #1565c0; /* darker blue */
}