/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3 {
  font-weight: 600;
}

button, .cta-button {
  padding: 0.75rem 1.5rem;
  background-color: #e76f51;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover, .cta-button:hover {
  background-color: #d06b45;
}

/* Header */
header {
  background-color: #2a9d8f;
  padding: 1rem 0;
}

header h1 {
  color: #fff;
  font-size: 2.5rem;
  display: inline-block;
}

nav {
  float: right;
  display: flex;
  gap: 2rem;
}

nav a {
  color: #fff;
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 500;
}

nav .login-btn {
  background-color: #fff;
  color: #2a9d8f;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e9f5f0;
  padding: 4rem 0;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero .text {
  flex: 1;
  padding-right: 2rem;
}

.hero h2 {
  font-size: 2.5rem;
  color: #2a9d8f;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 2rem;
}

.hero img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

/* Features Section */
.features {
  background-color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  color: #e76f51;
  margin-bottom: 2rem;
}

.feature-grid {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}

.feature-card {
  background-color: #f7f7f7;
  padding: 1.5rem;
  border-radius: 10px;
  width: 22%;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  font-size: 1.5rem;
  color: #e76f51;
}

.feature-card p {
  font-size: 1rem;
  color: #333;
}

/* About Section */
.about {
  background-color: #f0f4f1;
  padding: 4rem 0;
  text-align: center;
}

.about p {
  font-size: 1.1rem;
  color: #333;
}

/* Testimonials Section */
.testimonials {
  background-color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  color: #e76f51;
  margin-bottom: 2rem;
}

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

.testimonial {
  background-color: #f7f7f7;
  padding: 1.5rem;
  border-radius: 10px;
  width: 30%;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  font-size: 1.1rem;
  color: #333;
  font-style: italic;
}

/* Pricing Section */
.pricing {
  background-color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.pricing h2 {
  font-size: 2rem;
  color: #e76f51;
  margin-bottom: 2rem;
}

.pricing-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.pricing-card {
  background-color: #f7f7f7;
  padding: 2rem;
  border-radius: 10px;
  width: 30%;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
  font-size: 1.8rem;
  color: #e76f51;
}

.pricing-card p {
  font-size: 1.1rem;
  color: #333;
}

.pricing-card .cta-button {
  margin-top: 1.5rem;
}

/* Gallery Section */
.gallery {
  padding: 4rem 0;
  background-color: #fffefb;
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  color: #e76f51;
  margin-bottom: 2rem;
}

.gallery-slider {
  display: flex;
  gap: 1rem;
  justify-content: center;
  overflow: hidden;
}

.gallery-image {
  flex: 1 1 30%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}

.gallery-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Call to Action Section */
.cta-section {
  background-color: #e76f51;
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.cta-button.large {
  font-size: 1.25rem;
  padding: 1rem 2rem;
  background-color: #fff;
  color: #e76f51;
  border-radius: 5px;
}

/* Footer */
footer {
  background-color: #2a9d8f;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

footer p {
  font-size: 1rem;
}
