/* General Reset */
* {
    margin: 0;
    
    box-sizing: border-box;
    
}

/* Hero Section */
.hero {
    background: url('/images/banner.webp') no-repeat center center/cover;
    color: white;
    height: 100vh; /* Make the section take up the full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    text-align: center;
    padding: 50px 20px; /* Reduce padding to move the content up */
	padding-top: 80px;
}

.hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
	margin-top: -400px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #ff6600;
    color: black;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 2em;
}

/* Optional: Ensure content doesn't stretch too much */
.hero-content {
    max-width: 600px; /* Limit width of text block */
    margin: 0 auto;
}



/* General styling for the features section */
.features {
    text-align: center;
    padding: 50px 20px;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Container for feature cards */
.feature-cards {
    display: flex;
    justify-content: space-evenly;
    gap: 20px; /* Spacing between feature cards */
    flex-wrap: wrap; /* Responsive layout */
}

/* Individual feature card styling */
.feature-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 30%; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center; /* Center-align content */
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

/* Styling for the feature images */
.feature-image {
    width: 80px; /* Set a fixed width for the image */
    height: auto; /* Maintain aspect ratio */
    margin-top: 15px; /* Add some space above the image */
}


/* How It Works Section */
.how-it-works {
    background-color: #ffffff;
    padding: 60px 20px;
}

.steps {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 30px;
}

.step {
    width: 30%;
    text-align: center;
}

.step h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
    background-color: #e0e0ff;
    padding: 60px 20px;
    text-align: center;
}

.testimonials h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

/* General styling */
.pricing {
    text-align: center;
    padding: 50px 20px;
}

.pricing h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Container to align cards */
.pricing-container {
    display: flex;
    justify-content: space-evenly;
    gap: 20px; /* Spacing between cards */
    flex-wrap: wrap;
    max-width: 1200px; /* Reduce overall width */
    margin: 0 auto; /* Center the container */
}

/* Individual card styling */
.pricing-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 350px; /* Make the cards wider */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.pricing-card p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 15px;
}

/* List styling with ticks */
.pricing-card ul {
    list-style: none;
    padding: 20px;
    margin-bottom: 20px;
	background-color: transparent; /* Explicitly set transparent background */
    overflow: visible; /* Override hidden overflow */
}

.pricing-card ul li {
    position: relative;
    font-size: 1rem;
    color: #333; /* Change to a darker gray for better readability */
    margin-bottom: 10px;
    padding-left: 30px;
    background-color: transparent; /* Ensure no background color */
}

/* Tick icon styling */
.pricing-card ul li::before {
    content: "✔";
    color: green;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem; /* Make the tick slightly larger */
}


/* Button styling */
.pricing-cta-button {
    display: inline-block;
    background-color: #254254;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}



/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}


/* Social Media Icons */
.social-icons {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 15px; /* Space between icons */
}

.social-icons a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #007bff; /* Highlight color on hover */
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    color: black;
    padding: 15px;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 14px;
    display: none; /* Initially hidden */
    z-index: 1000;
}

.cookie-banner a {
    color: #008080 ;
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
	
}

.cookie-btn {
    background-color: #254254;
    color: #fff;
    border: none;
    padding: 10px 15px;
    margin-left: 15px;
    cursor: pointer;
    border-radius: 5px;
}

.cookie-btn:hover {
    background-color: #0056b3;
}

