/* General Custom Styles */
body {
    font-family: 'Roboto', sans-serif;
}

.header {
    position: relative;
    color: white; /* Default text color */
}

.flag-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #ffffff 50%, #004d00 50%); /* Flag colors */
    z-index: -1; /* Send background behind text */
}

.text-green {
    color: #004d00; /* Green color for the text */
    transition: color 0.5s ease; /* Smooth transition */
}

.bg-green {
    background-color: #004d00; /* Green background for specific text */
    color: white; /* White text color */
    padding: 0 5px; /* Add some padding to make the text more readable */
    transition: color 0.5s ease; /* Smooth transition */
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .text-green {
        color: #004d00; /* Green color for mobile */
    }

    .bg-green {
        background-color: #004d00; /* Green background for mobile */
        color: white; /* White text color for mobile */
    }
}

@media (min-width: 768px) {
    .text-green {
        color: #004d00; /* Green color for larger screens */
    }

    .bg-green {
        background-color: #004d00; /* Green background for larger screens */
        color: white; /* White text color for larger screens */
    }
}

/* Additional Styles for Other Sections */
.navbar {
    margin-bottom: 20px;
}

.feature-card, .plan-card {
    border-radius: 15px;
}

.price {
    font-size: 1.5em;
    font-weight: bold;
}
