/* Base Styles */
:root {
  --primary-color: #3498db;
  --secondary-color: #2980b9;
  --accent-color: #e67e22;
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;
  --text-color: #333333;
  --success-color: #2ecc71;
  --warning-color: #f39c12;
  --danger-color: #e74c3c;
  --gray-color: #95a5a6;
  --light-gray: #f5f5f5;
  
  --transition: all 0.3s ease;
  --border-radius: 4px;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --container-width: 1200px;
  --header-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #ffffff;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style-type: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  padding: 0 20px;
  margin: 0 auto;
}

/* Button Styles */
.btn-primary, 
.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  color: white;
}

.btn-secondary {
  background-color: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--light-color);
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Header Styles */
header {
  background-color: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

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

nav ul {
  display: flex;
}

nav li {
  margin-left: 30px;
}

nav a {
  color: var(--text-color);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a.active {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  padding: 100px 0;
  background-color: var(--light-color);
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: var(--text-color);
}

/* Feature Section */
.features {
  padding: 80px 0;
  background-color: white;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--dark-color);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  margin: 0 auto 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--light-color);
  color: var(--primary-color);
}

.feature-card h3 {
  margin-bottom: 15px;
  color: var(--dark-color);
}

/* Testimonial Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--dark-color);
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: thin;
}

.testimonial-slider::-webkit-scrollbar {
  height: 6px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
  background-color: var(--gray-color);
  border-radius: 10px;
}

.testimonial-card {
  min-width: 350px;
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-style: italic;
  position: relative;
  padding: 0 15px;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: """;
  font-size: 3rem;
  position: absolute;
  color: var(--primary-color);
  opacity: 0.3;
}

.testimonial-content p::before {
  top: -20px;
  left: -10px;
}

.testimonial-content p::after {
  bottom: -40px;
  right: -10px;
  content: """;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.testimonial-author h4 {
  margin-bottom: 5px;
  color: var(--dark-color);
}

.testimonial-author p {
  font-size: 0.9rem;
  color: var(--gray-color);
}

/* Checklist Section */
.checklist {
  padding: 80px 0;
}

.checklist h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--dark-color);
}

.checklist-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.check-items {
  flex: 1;
}

.check-items li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.check-items li svg {
  color: var(--success-color);
  margin-right: 15px;
  flex-shrink: 0;
}

.checklist-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background-color: var(--dark-color);
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Blog Section */
.blog-preview {
  padding: 80px 0;
  background-color: var(--light-color);
}

.blog-preview h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--dark-color);
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.blog-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  margin-bottom: 15px;
  color: var(--dark-color);
}

.blog-content p {
  margin-bottom: 20px;
  color: var(--text-color);
}

.blog-link {
  text-align: center;
}

.blog-link a {
  font-weight: 600;
  display: inline-block;
  position: relative;
}

.blog-link a::after {
  content: '→';
  margin-left: 5px;
  transition: var(--transition);
}

.blog-link a:hover::after {
  margin-left: 10px;
}

/* Blog List Page */
.page-header {
  padding: 60px 0;
  background-color: var(--light-color);
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.page-header p {
  font-size: 1.25rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-color);
}

.blog-list {
  padding: 80px 0;
}

.blog-post {
  display: flex;
  margin-bottom: 60px;
  gap: 30px;
  align-items: flex-start;
}

.blog-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.blog-summary {
  flex: 2;
}

.blog-summary h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--gray-color);
}

.blog-summary p {
  margin-bottom: 20px;
}

/* Newsletter Section */
.newsletter {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.newsletter p {
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px 15px;
  border-radius: var(--border-radius);
  border: 1px solid var(--gray-color);
  font-size: 1rem;
}

/* About Page Styles */
.about-intro {
  padding: 80px 0;
}

.about-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--dark-color);
}

.about-text p {
  margin-bottom: 20px;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.values {
  padding: 80px 0;
  background-color: var(--light-color);
}

.values h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--dark-color);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  padding: 30px;
  border-radius: 10px;
  background-color: white;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
  margin: 0 auto 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--light-color);
  color: var(--primary-color);
}

.value-card h3 {
  margin-bottom: 15px;
  color: var(--dark-color);
}

.team {
  padding: 80px 0;
}

.team h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--dark-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-member h3 {
  margin: 20px 0 5px;
  color: var(--dark-color);
}

.team-member p {
  padding: 0 20px;
  margin-bottom: 15px;
}

.team-member p:nth-of-type(1) {
  color: var(--primary-color);
  font-weight: 600;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 0 0 20px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-color);
  color: var(--primary-color);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
}

.stats {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-description {
  font-size: 1.25rem;
}

/* Contact Page */
.contact-content {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 60px;
}

.contact-info h2, 
.contact-form-container h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--dark-color);
}

.contact-info p {
  margin-bottom: 30px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-icon {
  margin-right: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--light-color);
  color: var(--primary-color);
}

.contact-details h3 {
  margin-bottom: 5px;
  color: var(--dark-color);
}

.social-contact h3 {
  margin-bottom: 15px;
  color: var(--dark-color);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-color);
  color: var(--primary-color);
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary-color);
  color: white;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 10px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
}

.consent-checkbox input {
  margin-right: 10px;
  margin-top: 5px;
  width: auto;
}

.map-section {
  padding: 80px 0;
  background-color: var(--light-color);
}

.map-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--dark-color);
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq {
  padding: 80px 0;
}

.faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: var(--dark-color);
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: var(--light-gray);
}

.faq-question h3 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--dark-color);
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 1000px;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  overflow: auto;
}

.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-color);
}

.modal-body {
  text-align: center;
}

.success-icon {
  margin: 0 auto 20px;
}

.modal-body h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.modal-body p {
  margin-bottom: 30px;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 15px;
}

.footer-links h4, 
.footer-contact h4 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-links h4:after, 
.footer-contact h4:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ddd;
}

.footer-links ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #ddd;
}

.footer-contact svg {
  margin-right: 10px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Banner */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1500;
  padding: 20px;
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-content p {
  flex: 1;
  min-width: 300px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-accept {
  background-color: var(--success-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  cursor: pointer;
}

.btn-customize {
  background-color: var(--gray-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  cursor: pointer;
}

.btn-decline {
  background-color: white;
  color: var(--text-color);
  border: 1px solid var(--gray-color);
  padding: 10px 20px;
  border-radius: var(--border-radius);
  cursor: pointer;
}

.btn-accept:hover {
  background-color: #27ae60;
}

.btn-customize:hover {
  background-color: #7f8c8d;
}

.btn-decline:hover {
  background-color: var(--light-gray);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .checklist-content {
    flex-direction: column;
  }
  
  .blog-post {
    flex-direction: column;
  }
  
  .blog-image {
    margin-bottom: 20px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 0;
  }
  
  nav ul {
    gap: 15px;
  }
  
  nav li {
    margin-left: 15px;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .features h2, 
  .testimonials h2, 
  .checklist h2, 
  .blog-preview h2, 
  .about-text h2, 
  .values h2, 
  .team h2 {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .blog-summary h2 {
    font-size: 1.75rem;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .social-icons {
    justify-content: center;
  }
}
