/* Base Styles */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --background-color: #f8fafc;
  --dark-bg: #0f172a;
  --text-color: #1e293b;
  --text-light: #64748b;
  --white: #ffffff;
  --light-gray: #f1f5f9;
  --border-color: #e2e8f0;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

section {
  padding: 60px 0;
}

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

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

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

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

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

/* Header & Navigation */
header {
  background-color: var(--white);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo a {
  color: var(--text-color);
}

.desktop-nav {
  display: none;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: block;
  }
}

.desktop-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.desktop-nav ul li a {
  color: var(--text-color);
  font-weight: 500;
}

.desktop-nav ul li a:hover {
  color: var(--primary-color);
}

.mobile-menu-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-button {
    display: none;
  }
}

.mobile-menu-button span {
  height: 3px;
  width: 100%;
  background-color: var(--text-color);
  border-radius: 3px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.mobile-menu-button.active span:nth-child(1) {
  -webkit-transform: translateY(8.5px) rotate(45deg);
          transform: translateY(8.5px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
  -webkit-transform: translateY(-8.5px) rotate(-45deg);
          transform: translateY(-8.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  padding: 20px 0;
  background-color: var(--white);
}

.mobile-nav.show {
  display: block;
}

.mobile-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.mobile-nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  display: block;
  padding: 5px 0;
}

.mobile-nav ul li a:hover {
  color: var(--primary-color);
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none !important;
  }
}

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

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

.hero .hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero .hero-content h1 span {
  color: var(--primary-color);
}

.hero .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

/* Features Section */
.feature-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .feature-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

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

.feature-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.feature-card .feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.feature-card .feature-icon img {
  max-width: 100%;
  height: auto;
}

.feature-card h3 {
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Services Section */
.services {
  background-color: var(--light-gray);
}

.service-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .service-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  text-align: center;
  height: 100%;
}

.service-card .service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.service-card .service-icon img {
  max-width: 100%;
  height: auto;
}

.service-card h3 {
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* FAQ Section */
.faq-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 25px;
  margin-bottom: 20px;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.faq-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Contact Section */
.contact {
  background-color: var(--light-gray);
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}

.contact .form-group {
  margin-bottom: 20px;
}

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

.contact .form-group input,
.contact .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
}

.contact .form-group input:focus,
.contact .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact button {
  width: 100%;
}

/* Success Message */
.success-message {
  min-height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.success-message .container {
  text-align: center;
}

.success-message h1 {
  margin-bottom: 2rem;
}

.success-message .message-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  text-align: left;
}

.success-message .message-content h2 {
  text-align: left;
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
}

.success-message .message-content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 2rem;
}

.success-message .message-content ul li {
  margin-bottom: 10px;
}

.success-message .message-content .back-home {
  text-align: center;
  margin-top: 2rem;
}

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

.footer-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-content {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.footer-info .footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-info p {
  color: var(--light-gray);
}

.footer-links h4 {
  margin-bottom: 20px;
}

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

.footer-links ul li a {
  color: var(--light-gray);
}

.footer-links ul li a:hover {
  color: var(--white);
}

.footer-contact h4 {
  margin-bottom: 20px;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-contact p a {
  color: var(--light-gray);
}

.footer-contact p a:hover {
  color: var(--white);
}

.footer-contact .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

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

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

.footer-contact .social-icons a img {
  width: 20px;
  height: 20px;
}

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

.copyright p {
  color: var(--light-gray);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 15px 0;
  z-index: 1001;
  display: none;
}

.cookie-consent.show {
  display: block;
}

.cookie-consent .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.cookie-consent p {
  margin-bottom: 0;
}

.cookie-consent p a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cookie-consent p a:hover {
  color: var(--white);
}
/*# sourceMappingURL=style.css.map */