/* Basic styles for layout */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: white;
}

header.hero-section {
    position: relative;
    height: 100vh;
    background-image: url('nz-landscape.jpg'); /* Ensure this path is correct */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Align content vertically in the center */
    align-items: center;
    text-align: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6); /* Darker overlay for better text visibility */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content h1, .hero-content h3 {
    margin: 0;
    color: #fff;
    font-size: 36px;
}

.hero-content h3 {
    margin-top: 10px;
    font-size: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #00b300;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 18px;
    margin-top: 20px;
    border-radius: 5px;
}

.stats-section {
    display: flex;
    justify-content: space-around;
    width: 80%;
    margin-top: 20px;
}

.stat {
    text-align: center;
    color: white;
}

.counter {
    font-size: 36px;
    font-weight: bold;
    color: #00b300;
}

/* Consultant Section Styling */
.consultants {
    padding: 50px;
    text-align: center;
    background-color: #1a1a1a;
}

.consultants-grid {
    display: flex;
    justify-content: space-around;
    gap: 100px; /* Increased gap between consultants */
    flex-wrap: wrap; /* Ensure they don't overlap on smaller screens */
}

.consultant {
    text-align: center;
    max-width: 250px;
}

.consultant img {
    width: 200px;
    height: 200px;
    border-radius: 50%; /* Circular shape for the images */
    object-fit: cover; /* Ensure image scales correctly inside the circle */
}

.book-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #00b300;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.book-button:hover {
    background-color: #009900;
}

/* Reverted contact form to original */
.contact-form {
    padding: 50px;
    background-color: #333;
    text-align: center;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #00b300;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px; /* Smoother button */
}

.contact-form button:hover {
    background-color: #009900;
}
