 /* Colour palette */
    :root {
      --primary: #092f61;      /* deep navy for hero backgrounds & CTAs */
      --secondary: #00a884;    /* teal for highlights and buttons */
      --accent: #e3ba4a;       /* gold accent for badges & calls to action */
      --dark: #1b1b1f;         /* dark charcoal for footer backgrounds */
      --light: #f5f7fa;        /* very light grey for page backgrounds */
      --text-dark: #2a2a2f;    /* almost black for primary text */
      --text-light: #6f7a87;   /* muted grey for secondary text */
      --radius: 12px;          /* base border radius */
      --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
      --transition: all 0.3s ease;
    }

    /* Global reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text-dark);
      background-color: var(--light);
      line-height: 1.6;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      color: var(--primary);
      line-height: 1.3;
    }

    h1 {
      font-size: 2.8rem;
    }

    h2 {
      font-size: 2.2rem;
    }

    h3 {
      font-size: 1.4rem;
    }

    p {
      margin-bottom: 1rem;
      color: var(--text-light);
      font-size: 1rem;
    }

    a {
      color: var(--secondary);
      text-decoration: none;
      transition: var(--transition);
    }
    a:hover {
      color: var(--accent);
    }

    /* Containers */
    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Buttons */
    .btn {
      display: inline-block;
      padding: 12px 24px;
      border-radius: var(--radius);
      font-weight: 600;
      text-align: center;
      cursor: pointer;
      transition: var(--transition);
    }
    .btn-primary {
      background-color: var(--secondary);
      color: #fff;
      border: 2px solid var(--secondary);
    }
    .btn-primary:hover {
      background-color: var(--primary);
      border-color: var(--primary);
    }
    .btn-secondary {
      background-color: var(--primary);
      color: #fff;
      border: 2px solid var(--primary);
    }
    .btn-secondary:hover {
      background-color: var(--secondary);
      border-color: var(--secondary);
    }
    .btn-outline {
      background-color: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
    }
    .btn-outline:hover {
      background-color: var(--primary);
      color: #fff;
    }

    /* Header */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background-color: var(--light);
      box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    }
    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 0;
    }
    .brand {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--primary);
    }
    .brand span {
      color: var(--secondary);
    }
    .nav-menu {
      display: flex;
      gap: 30px;
      list-style: none;
    }
    .nav-menu li a {
      font-weight: 500;
      color: var(--text-dark);
      padding: 8px 0;
      position: relative;
    }
    .nav-menu li a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0;
      height: 2px;
      background-color: var(--secondary);
      transition: width 0.3s;
    }
    .nav-menu li a:hover::after,
    .nav-menu li a.active::after {
      width: 100%;
    }

    /* Mobile nav */
    .mobile-toggle {
      display: none;
      font-size: 1.6rem;
      color: var(--primary);
      background: none;
      border: none;
      cursor: pointer;
    }
    @media (max-width: 768px) {
      .nav-menu {
        position: absolute;
        top: 70px;
        right: 20px;
        flex-direction: column;
        background-color: var(--light);
        border: 1px solid rgba(0,0,0,0.05);
        box-shadow: var(--shadow);
        padding: 20px;
        gap: 15px;
        display: none;
      }
      .nav-menu.show {
        display: flex;
      }
      .mobile-toggle {
        display: block;
      }
    }

    /* Hero section */
    .hero {
      position: relative;
      min-height: 80vh;
      background: linear-gradient(135deg, var(--primary) 0%, #1a4a8c 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    }
    .hero-content {
      text-align: center;
      max-width: 700px;
      padding: 0 20px;
    }
    .hero-content h1 {
      color: #fff;
      margin-bottom: 20px;
    }
    .hero-content p {
      color: #fff;
      font-size: 1.1rem;
      margin-bottom: 30px;
    }
    .hero-buttons .btn {
      margin: 10px;
    }

    /* Sections */
    .section {
      padding: 80px 0;
    }
    .section-heading {
      text-align: center;
      margin-bottom: 15px;
    }
    .section-subtitle {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 40px;
      color: var(--text-light);
    }

    /* =========================
       NEW PRICING SECTION
       ========================= */
    .pricing-section {
      padding: 80px 0;
      background-color: #f9fbfd;
    }

    .pricing-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .pricing-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .pricing-header h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .pricing-header p {
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto;
      color: var(--text-light);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .pricing-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      padding: 40px 30px;
      text-align: center;
      position: relative;
      transition: all 0.4s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .pricing-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .pricing-card.featured {
      border: 2px solid var(--secondary);
      background: linear-gradient(135deg, #fff 0%, #f0fbf8 100%);
      transform: scale(1.05);
    }

    .pricing-card.featured:hover {
      transform: scale(1.05) translateY(-10px);
    }

    .pricing-card .badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--accent);
      color: #fff;
      font-size: 0.85rem;
      font-weight: 600;
      padding: 6px 20px;
      border-radius: 30px;
      box-shadow: 0 4px 12px rgba(227, 186, 74, 0.3);
    }

    .pricing-card h3 {
      color: var(--primary);
      margin-bottom: 15px;
      font-size: 1.5rem;
    }

    .pricing-card .price {
      font-size: 3rem;
      font-weight: 700;
      color: var(--secondary);
      margin: 15px 0;
      position: relative;
    }

    .pricing-card .price::before {
      content: "€";
      font-size: 1.5rem;
      position: absolute;
      left: -20px;
      top: 10px;
    }

    .pricing-card .description {
      color: var(--text-light);
      font-size: 0.95rem;
      margin-bottom: 25px;
      min-height: 60px;
    }

    .pricing-card ul {
      list-style: none;
      padding: 0;
      margin: 25px 0;
      text-align: left;
      flex-grow: 1;
    }

    .pricing-card ul li {
      padding: 10px 0;
      border-bottom: 1px solid #f0f0f0;
      font-size: 0.95rem;
      color: var(--text-dark);
      display: flex;
      align-items: center;
    }

    .pricing-card ul li:last-child {
      border-bottom: none;
    }

    .pricing-card ul li i {
      color: var(--secondary);
      margin-right: 10px;
      font-size: 0.9rem;
    }

    .pricing-card .btn {
      margin-top: auto;
      width: 100%;
      padding: 14px 20px;
      font-size: 1rem;
      border-radius: 8px;
    }

    .pricing-note {
      text-align: center;
      margin-top: 50px;
      font-size: 1rem;
      color: var(--text-light);
    }

    .pricing-note a {
      color: var(--secondary);
      font-weight: 600;
      text-decoration: underline;
    }

    .pricing-note a:hover {
      color: var(--accent);
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
      .pricing-card.featured {
        transform: none;
      }
      
      .pricing-card.featured:hover {
        transform: translateY(-10px);
      }
    }

    @media (max-width: 768px) {
      .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
      }
      
      .pricing-header h2 {
        font-size: 2rem;
      }
    }

    /* Footer */
    footer {
      background-color: var(--dark);
      color: #fff;
      padding: 60px 0 30px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-logo {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 15px;
    }
    .footer-logo span {
      color: var(--secondary);
    }
    .footer-col h4 {
      margin-bottom: 12px;
      font-size: 1.2rem;
      color: #fff;
    }
    .footer-col ul {
      list-style: none;
    }
    .footer-col li {
      margin-bottom: 8px;
    }
    .footer-col a {
      color: #cbd0d8;
      font-size: 0.95rem;
    }
    .footer-col a:hover {
      color: var(--accent);
    }
    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 10px;
    }
    .social-links a {
      color: #fff;
      font-size: 1.2rem;
      transition: color 0.3s;
    }
    .social-links a:hover {
      color: var(--accent);
    }
    .footer-bottom {
      text-align: center;
      font-size: 0.85rem;
      color: #cbd0d8;
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 20px;
    }

    /* Animations */
    .animate {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .animate.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    /* Utility classes */
    .text-center {
      text-align: center;
    }

    @media (max-width: 576px) {
      h1 {
        font-size: 2rem;
      }
      h2 {
        font-size: 1.6rem;
      }
      .hero-content p {
        font-size: 1rem;
      }
      .section {
        padding: 60px 0;
      }
    }