:root {
    --primary: #00843D;     /* Australian Green */
    --secondary: #000083;   /* Australian Navy */
    --accent: #FFCD00;      /* Australian Gold */
    --highlight: #FF0000;   /* Bright Red */
    --light: #f9f9f9;
    --dark: #121212;
    --text: #333333;
    --gray: #6c757d;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
    --border-radius: 10px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: #fff;
}

.page-container {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
}

h1:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background: var(--accent);
}

h2 {
    font-size: 2.3rem;
    color: var(--dark);
    margin-bottom: 1.2rem;
    position: relative;
}

h3 {
    font-size: 1.5rem;
    color: var(--dark);
}

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

/* Header */
.site-header {
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo-container {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-left: 10px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0, 132, 61, 0.2);
}

.nav-cta:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:not(.nav-cta):hover {
    color: var(--primary);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--primary);
    border-radius: 3px;
}

/* Hero Section */
.hero-section {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background: linear-gradient(135deg, rgba(0,132,61,0.08) 0%, rgba(0,0,131,0.08) 100%);
    position: relative;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    padding-right: 2rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-svg {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.wave-divider svg {
    width: 100%;
    height: 70px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.primary-btn {
    background: var(--primary);
    color: white !important;
    box-shadow: 0 5px 15px rgba(0, 132, 61, 0.3);
}

.primary-btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 131, 0.4);
}

.btn.large {
    padding: 1.2rem 2.8rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--light);
}

.section-heading {
    text-align: center;
    margin-bottom: 4rem;
}

.section-heading h2 {
    display: inline-block;
    position: relative;
}

.section-heading h2:after {
    content: '';
    position: absolute;
    left: 30%;
    bottom: -10px;
    width: 40%;
    height: 3px;
    background: var(--accent);
}

.section-heading p {
    max-width: 600px;
    margin: 1rem auto 0;
    font-size: 1.1rem;
}

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

.feature-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid var(--primary);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: var(--accent);
}

.feature-icon {
    margin: 0 auto 1.5rem;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card p {
    margin-bottom: 0;
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 0;
    background: #fff;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 2rem;
}

.step {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: var(--light);
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.step:nth-child(1) {
    border-top: 4px solid var(--primary);
}

.step:nth-child(2) {
    border-top: 4px solid var(--secondary);
}

.step:nth-child(3) {
    border-top: 4px solid var(--accent);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 10px rgba(0, 132, 61, 0.3);
}

.step:nth-child(2) .step-number {
    background: var(--secondary);
    box-shadow: 0 5px 10px rgba(0, 0, 131, 0.3);
}

.step:nth-child(3) .step-number {
    background: var(--accent);
    box-shadow: 0 5px 10px rgba(255, 205, 0, 0.3);
}

.step-icon {
    margin: 0 auto 1.5rem;
}

.step h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0,132,61,0.05) 0%, rgba(0,0,131,0.05) 100%);
}

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

.testimonial {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--text);
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    position: absolute;
    left: -15px;
    top: -20px;
    color: var(--primary);
    opacity: 0.2;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: #fff;
}

.cta-content {
    background: linear-gradient(135deg, rgba(0,132,61,0.03) 0%, rgba(0,0,131,0.03) 100%);
    border-radius: var(--border-radius);
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--accent);
}

.cta-content h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.cta-content h2:after {
    left: 35%;
    width: 30%;
}

.cta-content p {
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

/* Footer */
.site-footer {
    background-color: var(--dark);
    color: #fff;
    padding: 4rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 3rem;
}

.footer-brand {
    grid-column: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-left: 10px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links, .footer-legal {
    display: flex;
    flex-direction: column;
}

.footer-links h3, .footer-legal h3 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul, .footer-legal ul {
    margin: 0;
    padding: 0;
}

.footer-links li, .footer-legal li {
    margin-bottom: 12px;
}

.footer-links a, .footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-section .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero-content h1:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-links li {
        margin: 1.2rem 0;
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .feature-card, .step, .testimonial {
        padding: 1.5rem;
    }
}
