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

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

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

        /* Header */
        header {
            background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
            color: white;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

.container-header {
    z-index: 10;
    background-color: #ffffff;
    background-image: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

a.brand-logo img {
    width: 150px;
}

.container-header .mod-menu {
    color: #3e5a38;
            font-size: 1.5em;
            font-weight: bold;
 } 
.online-links a {
    color: white !important;
}

  
        .logo {
            font-size: 2.5em;
            font-weight: bold;
            color: #fff;
            text-decoration: none;
            letter-spacing: 2px;
        }

        .contact-info {
            text-align: right;
        }

        .contact-info a {
    color: #3e5b38 !important;
            text-decoration: none;
            margin-left: 15px;
        }


        .contact-info a:hover {
            color: #90c695;
        }





        /* Hero Section */

.hero {
    position: relative;
    background-image: url(http://ascot.growingthings.co.nz/images/hero-background.png);
    background-position: center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: 1;
}

.hero * {
    position: relative;
    z-index: 2; /* Keep text above the overlay */
}

        .hero h1 {
            font-size: 3.5em;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: 1.3em;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .guarantee-badge {
    background: linear-gradient(45deg, #b23a2c, #a0291b);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 1.2em;
            font-weight: bold;
            display: inline-block;
            margin-top: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Features Section */
        .features {
            padding: 20px 0 0 0;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 2.5em;
            color: #2c5530;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #4a7c59, #90c695);
        }

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

        .feature-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 2px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-color: #90c695;
        }

        .feature-icon {
            font-size: 3em;
            margin-bottom: 20px;
            color: #4a7c59;
        }

        .feature-card h3 {
            font-size: 1.5em;
            margin-bottom: 15px;
            color: #2c5530;
        }

        /* Products Section */
        .products {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

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

        .product-item {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .product-item:hover {
            transform: translateY(-5px);
        }

        .product-item h4 {
            color: #2c5530;
            margin-bottom: 10px;
            font-size: 1.2em;
        }

        /* Where to Buy Section */
        .where-to-buy {
            padding: 80px 0;
            background: white;
        }

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

        .location-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid #4a7c59;
        }

        .location-card h3 {
            color: #2c5530;
            margin-bottom: 20px;
            font-size: 1.4em;
        }

        .location-card ul {
            list-style: none;
            padding: 0;
        }

        .location-card li {
            padding: 8px 0;
            border-bottom: 1px solid #dee2e6;
            color: #555;
        }

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

        /* Online Sales */
        .online-sales {
            background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
            color: white;
            padding: 60px 0;
            margin: 0 0 50px 0;
            text-align: center;
        }

        .online-sales h3 {
            font-size: 2em;
            margin-bottom: 30px;
        }

        .online-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .online-link {
            background: rgba(255,255,255,0.1);
            padding: 15px 30px;
            border-radius: 25px;
            color: white;
            text-decoration: none;
            transition: background 0.3s;
            border: 2px solid rgba(255,255,255,0.2);
        }

        .online-link:hover {
            background: rgba(255,255,255,0.2);
            border-color: rgba(255,255,255,0.4);
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: white;
            text-align: center;
        }

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

        .contact-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 40px;
            border-radius: 15px;
            text-align: center;
        }

        .contact-card h3 {
            color: #2c5530;
            margin-bottom: 20px;
            font-size: 1.4em;
        }

        .contact-card a {
            color: #4a7c59;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }

        .contact-card a:hover {
            color: #2c5530;
        }

        /* Footer */
        footer {
            background: #2c5530;
            color: white;
            text-align: center;
            padding: 40px 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }

            .logo {
                font-size: 2em;
                margin-bottom: 15px;
            }

            .hero h1 {
                font-size: 2.5em;
            }

            .hero p {
                font-size: 1.1em;
            }

            .section-title {
                font-size: 2em;
            }

            .online-links {
                flex-direction: column;
                align-items: center;
            }
        }
.itemid-268 .contact {
    padding: 50px;
    background: white;
    text-align: left;
}
form#contact-form {
    max-width: 500px;
}

h2.section-title {
    margin-top: 50px;
}
        .buttons-container {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
            margin: 50px 0;
        }

        .catalogue-button {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 20px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 15px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            position: relative;
            overflow: hidden;
            min-width: 220px;
            justify-content: center;
        }

        .catalogue-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .catalogue-button:hover::before {
            left: 100%;
        }

        .catalogue-btn {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            color: white;
            border: 3px solid transparent;
        }

        .catalogue-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 35px rgba(255,107,53,0.4);
        }

        .pricelist-btn {
            background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
            color: white;
            border: 3px solid transparent;
        }

        .pricelist-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 35px rgba(78,205,196,0.4);
        }

        .button-icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .catalogue-button:hover .button-icon {
            transform: scale(1.2) rotate(5deg);
        }

        .button-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
        }

        .button-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .button-subtitle {
            font-size: 0.9rem;
            opacity: 0.9;
            font-weight: 400;
        }

/* Contact Info Alignment & Spacing */
.container-topbar .contact-info {
  display: flex;
    flex-direction: row-reverse;
  align-items: flex-end;
  font-size: 0.9rem;
  padding: 10px 15px;
  color: #2b3b2f;
}
.container-topbar .contact-info a {
  color: #2b3b2f;
  text-decoration: none;
  margin: 2px 0;
}
.container-topbar .contact-info a:hover {
  text-decoration: underline;
}

/* Navbar Brand Centered on Mobile */
.navbar-brand {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

/* Hamburger Icon Styling */
.navbar-toggler {
  border: none;
  background: none;
  outline: none;
  position: relative;
  right: 15px;
  top: 15px;
  z-index: 1001;
}

.navbar-toggler .icon-menu {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #2b3b2f; /* Adjust color here */
  position: relative;
}

.navbar-toggler .icon-menu::before,
.navbar-toggler .icon-menu::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: #2b3b2f;
  left: 0;
}
.navbar-toggler .icon-menu::before {
  top: -8px;
}
.navbar-toggler .icon-menu::after {
  top: 8px;
}

/* Dropdown Menu Adjustments */
.navbar-collapse {
  background-color: #fff;
  padding: 10px 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.navbar-collapse .mod-menu > li > a {
  color: #2b3b2f;
  font-weight: bold;
  padding: 10px 0;
  display: block;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.navbar-collapse .mod-menu > li:last-child > a {
  border-bottom: none;
}

/* Mobile-specific fixes */
@media (max-width: 768px) {
  .container-header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .container-nav {
    width: 100%;
  }

  .grid-child.container-nav {
    order: 3;
  }

  .grid-child .navbar-brand {
    order: 2;
  }

  .container-topbar {
    order: 1;
  }

  .navbar-collapse {
    width: 100%;
  }
}

/* Make the header container use flexbox to align logo and nav on same row */
.header.container-header.full-width {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Ensure the grid-child divs sit side by side */
.header .grid-child {
    display: flex;
    align-items: center;
    flex: none;
}

/* Logo section - keep on left */
.header .grid-child:first-child {
    flex: 0 0 auto;
}

/* Navigation section - align to right */
.header .grid-child.container-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
}

/* Style the navbar itself */
.navbar.navbar-expand-lg {
    width: auto;
    padding: 0;
}

/* Remove any extra margins/padding that might interfere */
.navbar-brand {
    margin: 0;
}

/* Mobile responsive - stack vertically on small screens */
@media (max-width: 991px) {
    .header.container-header.full-width {
        flex-direction: column;
        text-align: center;
    }
    
    .header .grid-child.container-nav {
        margin-left: 0;
        justify-content: center;
        margin-top: 10px;
    }
}

/* Remove width constraints from grid-child to allow natural sizing */
.grid-child {
    width: auto !important;
    max-width: none !important;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

/* Stop header from taking full width */
.header.container-header.full-width {
    width: auto !important;
    max-width: none !important;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

/* Alternative: Target the full-width class specifically */
.full-width {
    width: auto !important;
    max-width: none !important;
}

/* Or target any header with container-header class */
.container-header {
    width: auto !important;
    max-width: 1200px !important; /* Set a reasonable max width instead */
    margin: 0 auto; /* Center the header */
}


      .content-section {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }
        
        .content-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #2d5016, #4a7c59);
        }
        
        .content-section h2 {
            font-size: 2.2em;
            color: #2d5016;
            margin-bottom: 25px;
            position: relative;
        }
        
        .content-section p {
            font-size: 1.1em;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }
        
        .values-section {
            grid-column: 1 / -1;
            background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
            color: white;
            margin-top: 40px;
        }
        
        .values-section h2 {
            color: white;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .value-item {
            text-align: center;
            padding: 25px;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .value-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .value-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }
        
        .value-item h3 {
            font-size: 1.3em;
            margin-bottom: 15px;
        }
        
        .value-item p {
            font-size: 0.95em;
            opacity: 0.9;
        }
        
        .journey-section {
            grid-column: 1 / -1;
            background: white;
            margin-top: 40px;
            padding: 50px 40px;
        }
        
        .journey-section h2 {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2.5em;
        }
        
        .timeline {
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin: 40px 0;
            position: relative;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 10%;
            right: 10%;
            height: 3px;
            background: linear-gradient(90deg, #2d5016, #4a7c59);
            z-index: 1;
        }
        
        .timeline-item {
            text-align: center;
            position: relative;
            z-index: 2;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            max-width: 200px;
        }
        
        .timeline-year {
            font-size: 1.8em;
            font-weight: bold;
            color: #2d5016;
            margin-bottom: 10px;
        }
        
        .timeline-desc {
            font-size: 0.9em;
            color: #666;
        }
        
        .cta-section {
            text-align: center;
            background: #f8f9fa;
            padding: 50px 40px;
            border-radius: 15px;
            margin-top: 60px;
        }
        
        .cta-section h2 {
            font-size: 2.5em;
            color: #2d5016;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2em;
            color: #666;
            margin-bottom: 30px;
        }
        
        .contact-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .contact-item {
            background: white;
            padding: 20px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .contact-item:hover {
            transform: translateY(-3px);
        }
        
        .contact-item a {
            color: #2d5016;
            text-decoration: none;
            font-weight: bold;
        }
        
        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .header h1 {
                font-size: 2.5em;
            }
            
            .timeline {
                flex-direction: column;
                gap: 30px;
            }
            
            .timeline::before {
                display: none;
            }
            
            .contact-info {
                flex-direction: column;
                align-items: center;
            }
        }
