a {
    text-decoration: none;
    color: #fff;
}

ul {
    list-style: none;
    padding: 0;
}
/* Hero Section */
.hero {
    position: relative;
    background: url('hero-image.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Optional: Add a semi-transparent overlay for better text readability */
.hero-overlay {
    position: relative;
    z-index: 2;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    border-radius: 10px;
    display: inline-block;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Optional darker overlay */
    z-index: 1;
}

/* Hero Section Text */
.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Buttons */
.cta-buttons {
    margin-top: 1rem;
}

.cta-button, .cta-button-secondary {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 0 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.cta-button {
    background: #ff6f61;
    color: white;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #e65d50;
}

.cta-button-secondary {
    background: #333;
    color: white;
    transition: background 0.3s ease;
}

.cta-button-secondary:hover {
    background: #444;
}

/* Features Section */
.features {
    padding: 50px 20px;
    background: #f9f9f9;
    text-align: center;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.features ul li {
    margin: 10px 0;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 50px 20px;
    text-align: center;
    background: #fff;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.testimonials blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin: 20px auto;
    max-width: 600px;
}

.testimonials cite {
    display: block;
    margin-top: 10px;
    font-size: 1rem;
    color: #777;
}

/* Call-to-Action Section */
.call-to-action {
    padding: 50px 20px;
    background: #ff6f61;
    color: white;
    text-align: center;
}

.call-to-action h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    padding: 20px;
    background: #333;
    color: white;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.footer-links li {
    margin: 0 10px;
}

.footer-links a {
    color: #ff6f61;
}

.social-media a {
    margin: 0 10px;
    color: white;
    font-weight: bold;
}

/* Features Table */
.features {
    padding: 50px 20px;
    background: #f9f9f9;
    text-align: center;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.features-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    border: 1px solid #ddd;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.features-table thead {
    background: #ff6f61;
    color: white;
}

.features-table th, .features-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.features-table tbody tr:nth-child(even) {
    background: #f2f2f2;
}

/* Pricing Section */
.pricing {
    padding: 50px 20px;
    background: #fff;
    text-align: center;
}

.pricing h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.pricing-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6f61;
    margin: 15px 0;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.pricing-card ul li {
    margin: 10px 0;
    font-size: 1rem;
}

.pricing-card .cta-button, .pricing-card .cta-button-secondary {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 15px;
    text-transform: uppercase;
}

.pricing-card .cta-button {
    background: #ff6f61;
    color: white;
    font-weight: bold;
    transition: background 0.3s ease;
}

.pricing-card .cta-button:hover {
    background: #e65d50;
}

.pricing-card .cta-button-secondary {
    background: #333;
    color: white;
    font-weight: bold;
    transition: background 0.3s ease;
}

.pricing-card .cta-button-secondary:hover {
    background: #444;
}

/* General mobile-friendly styles */
body {
	margin: 0;
	font-family: Arial, sans-serif;
	line-height: 1.6;
}

/* Navigation bar styling */
.navbar {
	background-color: #ff6f61;
	color: white;
	padding: 10px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
	font-size: 1.5rem;
	font-weight: bold;
}

.navbar .nav-links {
	display: flex;
	gap: 15px;
}

.navbar a {
	color: white;
	text-decoration: none;
	font-weight: bold;
}

.navbar a:hover {
	text-decoration: underline;
}

/* Content section styling */
.terms-of-service .content {
	max-width: 800px;
	margin: 20px auto;
	padding: 20px;
	background: #f9f9f9;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.terms-of-service h2 {
	text-align: center;
	color: #ff6f61;
	margin-bottom: 20px;
}

.terms-of-service ul {
	padding-left: 20px;
}

.terms-of-service ul li {
	margin-bottom: 10px;
}

/* Footer styling */
.footer {
	padding: 20px;
	background: #333;
	color: white;
	text-align: center;
}

.footer a {
	color: #ff6f61;
	text-decoration: none;
}

.footer a:hover {
	text-decoration: underline;
}

/* Mobile styles */
@media (max-width: 768px) {
	/* Adjust navbar layout */
	.navbar {
		flex-wrap: wrap;
		text-align: center;
		padding: 10px;
	}

	.navbar .logo {
		flex-basis: 100%;
		margin-bottom: 10px;
	}

	.navbar .nav-links {
		flex-basis: 100%;
		flex-wrap: wrap;
		justify-content: center;
	}

	.navbar a {
		margin: 5px 10px;
	}

	/* Adjust content padding and font size */
	.terms-of-service .content {
		padding: 15px;
	}

	.terms-of-service h2 {
		font-size: 1.5rem;
	}

	.terms-of-service ul li {
		font-size: 1rem;
	}

	/* Footer adjustments */
	.footer {
		padding: 15px;
		font-size: 0.9rem;
	}
}

/* Layout improvements for the content */
.privacy-policy .content {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	background: #f9f9f9;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.privacy-policy h2 {
	text-align: center;
	color: #ff6f61;
	margin-bottom: 20px;
}

.privacy-policy ul {
	padding-left: 20px;
}

.privacy-policy ul li {
	margin-bottom: 10px;
}
/* Additional styles for terms page */
.terms-of-service .content {
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	background: #f9f9f9;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.terms-of-service h2 {
	text-align: center;
	color: #ff6f61;
	margin-bottom: 20px;
}

.terms-of-service ul {
	padding-left: 20px;
}

.terms-of-service ul li {
	margin-bottom: 10px;
}