    /* Reset and base styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      color: #333;
      line-height: 1.6;
      overflow-x: hidden;
      scroll-snap-type: y mandatory;
      height: 100vh;
      overflow-y: scroll;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    /* Container */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* Header */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      background-color: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid #eaeaea;
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 4rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo-square {
      width: 2rem;
      height: 2rem;
      /**background-color: #facc15;
      border-radius: 0.25rem;**/
      background: url('img/logoblack.png') center/cover no-repeat, #fff;
    }

    .logo-text {
      font-size: 1.25rem;
      font-weight: 400;
      font-family: 'Oswald';
    }

    nav {
      display: none;
    }

    @media (min-width: 768px) {
      nav {
        display: flex;
        gap: 1.5rem;
      }
    }

    nav a {
      font-size: 0.875rem;
      font-weight: 500;
      transition: color 0.2s;
    }

    nav a:hover {
      color: #facc15;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
      font-weight: 500;
      border-radius: 0.25rem;
      cursor: pointer;
      transition: all 0.2s;
    }

    .button-primary {
      background-color: #333;
      color: white;
      border: none;
    }

    .button-primary:hover {
      background-color: #555;
    }

    .button-outline {
      background-color: transparent;
      color: #333;
      border: 1px solid #ddd;
    }

    .button-outline:hover {
      background-color: #f5f5f5;
    }

    .button-lg {
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
    }

    .mobile-menu-button {
      display: block;
    }

    /**@media (min-width: 768px) {
      .mobile-menu-button {
        display: none;
      }
    }**/

    /* Full-height sections with snap scrolling */
    section {
      min-height: 100vh;
      scroll-snap-align: start;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 5rem 0;
      position: relative;
    }

    /* Hero Section */
    .hero {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /**background-color: #f5f5f5;
      opacity: 0.3;**/
      z-index: -1;
      background: url('img/hero-bg.jpg') center/cover no-repeat, #f5f5f5;
      /*animation: zoomBg 5s infinite alternate;*/
    }
    
    @keyframes zoomBg {
      0% {
        transform: scale(1);
      }
      100% {
        transform: scale(1.1);
      }
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 700px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .hero h1 {
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1.2;
    }

    @media (min-width: 640px) {
      .hero h1 {
        font-size: 3rem;
      }
    }

    @media (min-width: 768px) {
      .hero h1 {
        font-size: 3.75rem;
      }
    }

    .hero p {
      color: #666;
      max-width: 700px;
    }

    @media (min-width: 768px) {
      .hero p {
        font-size: 1.25rem;
      }
    }

    .hero-buttons {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin-top: 1rem;
    }

    @media (min-width: 400px) {
      .hero-buttons {
        flex-direction: row;
      }
    }

    .hero-gradient {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 6rem;
      background: linear-gradient(to top, white, transparent);
    }

    /* Section Styles */
    .section-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-align: center;
    }

    @media (min-width: 640px) {
      .section-title {
        font-size: 2.5rem;
      }
    }

    @media (min-width: 768px) {
      .section-title {
        font-size: 3rem;
      }
    }

    .section-description {
      color: #666;
      text-align: center;
      max-width: 700px;
      margin: 0 auto 3rem;
    }

    @media (min-width: 768px) {
      .section-description {
        font-size: 1.25rem;
      }
    }

    .bg-muted {
      background-color: #f5f5f5;
    }

    /* Projects Section */
    .projects-grid {
      display: grid;
      gap: 2rem;
    }

    @media (min-width: 640px) {
      .projects-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .projects-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .project-card {
      border: 1px solid #eaeaea;
      border-radius: 0.5rem;
      overflow: hidden;
      background-color: white;
      transition: all 0.3s;
    }

    .project-card:hover {
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      transform: translateY(-5px);
    }

    .project-image {
      position: relative;
      aspect-ratio: 16 / 9;
      overflow: hidden;
    }

    .project-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
    }

    .project-card:hover .project-image img {
      transform: scale(1.05);
    }

    .project-content {
      padding: 1.5rem;
    }

    .project-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .project-meta {
      display: flex;
      align-items: center;
      font-size: 0.875rem;
      color: #666;
      margin-bottom: 0.75rem;
    }

    .project-meta svg {
      margin-right: 0.25rem;
    }

    .project-description {
      color: #666;
    }

    .project-footer {
      padding: 0 1.5rem 1.5rem;
    }

    /* About Section */
    .about-grid {
      display: grid;
      gap: 3rem;
    }

    @media (min-width: 1024px) {
      .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    .about-content {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .about-title {
      font-size: 2rem;
      font-weight: 700;
      text-align: left;
    }

    @media (min-width: 640px) {
      .about-title {
        font-size: 2.5rem;
      }
    }

    .about-text {
      color: #666;
    }

    .values-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .values-list {
      display: grid;
      gap: 0.5rem;
      list-style: none;
    }

    .value-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .value-dot {
      width: 0.5rem;
      height: 0.5rem;
      background-color: #facc15;
      border-radius: 50%;
    }

    .about-image {
      position: relative;
      aspect-ratio: 16 / 9;
      border-radius: 0.5rem;
      overflow: hidden;
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Services Section */
    .services-grid {
      display: grid;
      gap: 2rem;
    }

    @media (min-width: 640px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .services-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .service-card {
      border: 1px solid #eaeaea;
      border-radius: 0.5rem;
      padding: 1.5rem;
      background-color: white;
      transition: all 0.3s;
    }

    .service-card:hover {
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      transform: translateY(-5px);
    }

    .service-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 3rem;
      height: 3rem;
      border-radius: 9999px;
      background-color: rgba(250, 204, 21, 0.1);
      margin-bottom: 1rem;
    }

    .service-icon svg {
      width: 1.5rem;
      height: 1.5rem;
      color: #facc15;
    }

    .service-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .service-description {
      color: #666;
    }

    /* Where We Work Section */
    .where-we-work-grid {
      display: grid;
      gap: 3rem;
      align-items: center;
    }

    @media (min-width: 1024px) {
      .where-we-work-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .locations-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .locations-text {
      color: #666;
      margin-bottom: 1.5rem;
    }

    .locations-grid {
      display: grid;
      gap: 0.5rem;
    }

    @media (min-width: 640px) {
      .locations-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .location-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .location-dot {
      width: 0.5rem;
      height: 0.5rem;
      background-color: #facc15;
      border-radius: 50%;
    }

    .map-container {
      display: flex;
      justify-content: center;
    }

    .florida-map {
      max-width: 100%;
      height: auto;
    }

    /* Contact Section */
    .contact-grid {
      display: grid;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .contact-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .contact-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .contact-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 1.5rem;
      border: 1px solid #eaeaea;
      border-radius: 0.5rem;
      background-color: white;
      transition: all 0.3s;
    }

    .contact-card:hover {
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      transform: translateY(-5px);
    }

    @media (min-width: 768px) and (max-width: 1023px) {
      .contact-card:last-child {
        grid-column: span 2;
      }
    }

    .contact-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 4rem;
      height: 4rem;
      border-radius: 9999px;
      background-color: rgba(250, 204, 21, 0.1);
      margin-bottom: 1rem;
    }

    .contact-icon svg {
      width: 2rem;
      height: 2rem;
      color: #facc15;
    }

    .contact-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .contact-info {
      color: #666;
    }

    .contact-button-container {
      display: flex;
      justify-content: center;
      margin-top: 2rem;
    }

    /* Footer */
    footer {
      background-color: #f5f5f5;
      border-top: 1px solid #eaeaea;
      padding: 2rem 0;
      scroll-snap-align: start;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    @media (min-width: 768px) {
      footer {
        padding: 3rem 0;
      }
    }

    .footer-grid {
      display: grid;
      gap: 2rem;
    }

    @media (min-width: 640px) {
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .footer-logo-square {
      width: 1.5rem;
      height: 1.5rem;
      background-color: #facc15;
      border-radius: 0.25rem;
      background: url('img/logoblack.png') center/cover no-repeat, #f5f5f5;
    }

    .footer-logo-text {
      font-size: 1.125rem;
      font-weight: 400;
      font-family: 'Oswald';
    }

    .footer-about {
      font-size: 0.875rem;
      color: #666;
    }

    .footer-title {
      font-size: 1.125rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .footer-link {
      font-size: 0.875rem;
      color: #666;
      transition: color 0.2s;
    }

    .footer-link:hover {
      color: #333;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      font-size: 0.875rem;
      color: #666;
      margin-bottom: 0.5rem;
    }

    .footer-contact-icon {
      margin-top: 0.125rem;
      width: 1rem;
      height: 1rem;
      color: #666;
    }

    .footer-bottom {
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid #eaeaea;
      text-align: center;
      font-size: 0.875rem;
      color: #666;
    }

    /* SVG Icons */
    .icon {
      display: inline-block;
      width: 1.5rem;
      height: 1.5rem;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .icon-sm {
      width: 1rem;
      height: 1rem;
    }

    .icon-lg {
      width: 2rem;
      height: 2rem;
    }

    /* Scroll down indicator */
    /**.scroll-indicator {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      animation: bounce 2s infinite;
    }

    .scroll-indicator-text {
      font-size: 0.875rem;
      color: #666;
      margin-bottom: 0.5rem;
    }

    .scroll-indicator-arrow {
      width: 1.5rem;
      height: 1.5rem;
      color: #666;
    }**/

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      }
      40% {
        transform: translateY(-10px);
      }
      60% {
        transform: translateY(-5px);
      }
    }

    /* Navigation dots */
    .nav-dots {
      position: fixed;
      right: 2rem;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 1rem;
      z-index: 40;
    }

    .nav-dot {
      width: 0.75rem;
      height: 0.75rem;
      border-radius: 50%;
      background-color: rgba(0, 0, 0, 0.2);
      transition: all 0.3s;
      cursor: pointer;
    }

    .nav-dot.active {
      background-color: #facc15;
      transform: scale(1.3);
    }

    .nav-dot:hover {
      background-color: rgba(0, 0, 0, 0.4);
    }
