:root {
    --olive: #3A4D1F;
    --olive-light: #556B2F;
    --olive-dark: #2A3A15;
    --black: #212529;
    --white: #FFFFFF;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--black);
    background-color: var(--white);
    padding-top: 76px;
}

/* Text Colors */
.text-olive {
    color: var(--olive) !important;
}

/* Background Colors */
.bg-olive {
    background-color: var(--olive) !important;
}

/* Buttons */
.btn-olive {
    background-color: var(--olive);
    color: var(--white);
    border-color: var(--olive);
}

.btn-olive:hover, .btn-olive:focus {
    background-color: var(--olive-dark);
    color: var(--white);
    border-color: var(--olive-dark);
}

.btn-outline-olive {
    color: var(--olive);
    border-color: var(--olive);
}

.btn-outline-olive:hover, .btn-outline-olive:focus {
    background-color: var(--olive);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
}

.hero-image-container:before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(58, 77, 31, 0.1);
    border-radius: 50%;
    top: -30px;
    right: -30px;
    z-index: -1;
}

/* About Section */
.about-image-container {
    position: relative;
}

.about-image-container:before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: rgba(58, 77, 31, 0.1);
    border-radius: 50%;
    bottom: -20px;
    left: -20px;
    z-index: -1;
}

/* Testimonial */
.testimonial {
    position: relative;
}

.testimonial:before {
    content: '\201C';
    font-size: 6rem;
    position: absolute;
    top: -20px;
    left: 10px;
    color: rgba(58, 77, 31, 0.1);
    font-family: Georgia, serif;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    font-weight: bold;
}

/* Multi-step Form */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    font-weight: bold;
    color: #6c757d;
    flex-shrink: 0;
}

.step-circle.active {
    background-color: var(--olive);
    color: white;
}

.step-circle.completed {
    background-color: var(--olive-light);
    color: white;
}

.step-line {
    flex-grow: 1;
    height: 3px;
    background-color: #e9ecef;
    margin: 0 5px;
    align-self: center;
}

.step-line.completed {
    background-color: var(--olive-light);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 40px 0;
    }
}