body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #333;
    overflow-x: hidden;
    background: #f8f9fa;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('static/make.jpg') no-repeat center center/cover;
    z-index: -2;
    filter: blur(5px) brightness(0.7);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: -1;
}

header {
    background: rgba(255,255,255,0.9);
    padding: 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 10;
}

header .logo img {
    height: 40px;
}

header nav {
    display: flex;
    gap: 1.5rem;
}

header nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

header nav a:hover {
    color: #0066cc;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.form-container {
    background: rgba(255,255,255,0.95);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    max-width: 700px;
    width: 100%;
    margin: 2rem auto;
}


form {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

form .field {
    flex: 1;
    min-width: 100px;
    font-size: large;
}

form input, form select {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 5px;
    font-size: large;
}

form button {
    background-color: #0d4006;
    color: white;
    padding: 0rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form button:hover {
    background-color: #0b9647;
}

.spinner {
    text-align: center;
}

.spinner div {
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top: 4px solid #006633;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.spinner p {
    margin-top: 0.5rem;
    color: #333;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.how-we-help {
    padding: 4rem 2rem;
    background: #e6f2ec; /* light green */
    text-align: center;
}

.how-we-help h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #006633; /* dark green heading */
}

.help-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.help-item {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    max-width: 250px;
    flex: 1 1 200px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.help-item img {
    height: 50px;
    margin-bottom: 1rem;
}

.help-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #333;
}

.help-item p {
    font-size: 0.95rem;
    color: #555;
}


.why-us {
    padding: 4rem 2rem;
    background: #fff;
    text-align: center;
}

.why-us h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #006633;
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.trust-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    max-width: 250px;
    flex: 1 1 200px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.trust-item img {
    height: 50px;
    margin-bottom: 1rem;
}

.trust-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #333;
}

.trust-item p {
    font-size: 0.95rem;
    color: #555;
}

.testimonials {
    padding: 4rem 2rem;
    background: #2e5339; /* deep green */
    text-align: center;
    color: #f1f3f5; /* light text */
}

.testimonials h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #ffffff; /* white heading */
}

.testimonial-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.testimonial-item {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    max-width: 300px;
    flex: 1 1 250px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    color: #333;
}

.testimonial-content {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: auto;
}

.testimonial-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ccc;
}

.testimonial-author strong {
    color: #333;
}

.results-section h1 {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.results-table-container {
    overflow-x: auto;
}

.results-table {
    width: 90%;
    border-collapse: collapse;
    margin: 0 auto;
}

.results-table th,
.results-table td {
    padding: 0.75rem;
    border: 1px solid #ccc;
    text-align: left;
}

.results-table th {
    background-color: #f1f1f1;
    color: #092114;
}

.results-table tr:nth-child(even) {
    background-color: #fafafa;
}

.btn-primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #006633;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #004d26;
}


.page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: #08110c;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 8px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.about-hero {
    text-align: center;
    margin-bottom: 2rem;
}

.about-hero h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.about-hero p {
    font-size: 1.2rem;
    color: #ffffff;
}

.about-text h2 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-top: 2rem;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #c0bbbb;
    margin-bottom: 1rem;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.about-text ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    color: #c0bbbb;
}

.about-text ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #006633;
    font-weight: bold;
}

.about-text ol {
    margin: 1rem 0;
    padding-left: 1.2rem;
    color: #c0bbbb;
}

.about-text ol li {
    margin-bottom: 0.5rem;
}

.site-footer {
    background: #171615; /* keep your existing dark brown */
    color: #f1f1f1;
    padding: 3rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-left {
    flex: 1 1 300px;
}

.footer-left img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-left p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ddd;
}

.footer-right {
    flex: 1 1 200px;
}

.footer-right h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #fff;
}

.footer-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-right li {
    margin-bottom: 0.5rem;
}

.footer-right a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #bbb;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
}


@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left, .footer-right {
        flex: unset;
    }
}


/* Mobile & small screens */
@media (max-width: 600px) {
    .form-container {
        padding: 2rem;
        width: 80%; /* you can adjust between 90%-100% */
        margin-top: 1rem;
    }

    form {
        flex-direction: column;
    }

    .field {
        min-width: 100%;
    }

    .header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .logo img {
        height: 5px; /* smaller logo on mobile */
    }

    .nav {
        justify-content: center;
    }
 button,
    .btn-primary {
        width: 100%;
        height: 90%;
        font-size: 1.5rem;
        padding: 0.9rem;
        margin-top: 1rem;
    }
}

