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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

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

h1 {
  font-size: 3rem;
  font-weight: 700;
}

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

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: #666;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background-color: #9c27b0;
  color: white;
}

.btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background-color: #545b62;
}

.btn-outline {
  background-color: transparent;
  color: #9c27b0;
  border: 2px solid #9c27b0;
}

.btn-outline:hover {
  background-color: #9c27b0;
  color: white;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0d010f;
  color: white;
  padding: 20px;
  z-index: 1000;
  display: none;
}

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

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.cookie-content p {
  color: #fff;
}

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

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
}

.cookie-option {
  margin: 15px 0;
}

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.cookie-modal-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

/* Header */
.header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 40px;
  height: 40px;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #9c27b0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-menu.active{
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 15px;
  width: 100%;
  background-color: #fff;

  position: absolute;
  top: 80px;
  left: 0px;
  z-index: 1000;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #9c27b0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
}

.hero-img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

/* Sections */
section {
  padding: 80px 0;
}

.about {
  background-color: #f8f9fa;
}

.about p {
  text-align: center;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 2.5rem;
  color: #9c27b0;
  margin-bottom: 0.5rem;
}

/* Services */
.services-grid {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.service-card {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  min-width: 300px;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

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

/* Advantages */
.advantages {
  background-color: #f8f9fa;
}

.advantages-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.advantage-card {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  min-width: 300px;
}

.advantage-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonials-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.testimonial-card {
  flex: 1;
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  min-width: 300px;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-author {
  margin-top: 1rem;
  border-top: 1px solid #e9ecef;
  padding-top: 1rem;
}

.testimonial-author strong {
  display: block;
  color: #333;
}

.testimonial-author span {
  color: #666;
  font-size: 0.9rem;
}

/* Blog */
.blog {
  background-color: #f8f9fa;
}

.blog-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.blog-card {
  flex: 1;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  min-width: 300px;
}

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

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

.blog-content {
  padding: 1.5rem;
}

.blog-link {
  color: #9c27b0;
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  text-decoration: underline;
}

/* Contact */
.contact-content {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
}

.social-links {
  margin-top: 2rem;
}

.social-links a {
  display: inline-block;
  margin-right: 1rem;
  color: #9c27b0;
  text-decoration: none;
}

.social-links a:hover {
  text-decoration: underline;
}

.contact-form {
  flex: 1;
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #9c27b0;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

/* Footer */
.footer {
  background-color: #08022d;
  color: white;
  padding: 3rem 0 1rem;
}
.footer p{
  color: #fff !important;
}

.footer-content {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-brand,
.footer-links,
.footer-legal,
.footer-newsletter {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

.footer h3,
.footer h4 {
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul li a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: white;
}

.newsletter-form {
  margin-top: 1rem;
}

.newsletter-form .form-group {
  margin-bottom: 1rem;
}

.newsletter-form input {
  background-color: #34495e;
  border: 1px solid #5a6c7d;
  color: white;
}

.newsletter-form input::placeholder {
  color: #bdc3c7;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #34495e;
  color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .services-grid,
  .advantages-grid,
  .testimonials-grid,
  .blog-grid {
    flex-direction: column;
  }

  .stats {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-content {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .nav {
    padding: 1rem 15px;
  }

  .hero {
    padding: 100px 15px 60px;
  }

  section {
    padding: 60px 0;
  }

  .service-card,
  .advantage-card,
  .testimonial-card,
  .blog-card {
    min-width: auto;
  }
}

/* Article Page Styles */
.article-header {
  padding: 120px 0 40px;
  background-color: #f8f9fa;
  text-align: center;
}

.article-meta {
  color: #666;
  margin-bottom: 2rem;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.article-content h2 {
  text-align: left;
  margin-top: 2rem;
  font-size: 1.8rem;
}

.article-content h3 {
  margin-top: 1.5rem;
  font-size: 1.4rem;
}

.article-content ul,
.article-content ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  color: #9c27b0;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

/* Services Page Styles */
.services-page .service-section {
  margin-bottom: 4rem;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.services-page .service-section h2 {
  text-align: left;
  color: #2c3e50;
  border-bottom: 3px solid #9c27b0;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.service-features {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.service-feature {
  flex: 1;
  min-width: 250px;
}

.service-feature h4 {
  color: #9c27b0;
  margin-bottom: 0.5rem;
}

/* Legal Pages */
.legal-page {
  padding: 120px 0 80px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-content h2 {
  text-align: left;
  margin-top: 2rem;
  font-size: 1.8rem;
  color: #2c3e50;
}

.legal-content h3 {
  margin-top: 1.5rem;
  font-size: 1.4rem;
  color: #34495e;
}

/* Thanks Page */
.thanks-page {
  padding: 120px 0;
  text-align: center;
  background-color: #f8f9fa;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-content {
  max-width: 600px;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  color: #28a745;
}

.thanks-content h1 {
  color: #28a745;
  margin-bottom: 1rem;
}
