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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-popup.hidden {
  display: none;
}

.cookie-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  text-align: left;
}

.cookie-icon {
  margin-bottom: 20px;
}

.cookie-globe {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4ade80, #22d3ee);
  border-radius: 50%;
  position: relative;
}

.cookie-globe::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.cookie-content h2 {
  font-size: 24px;
  color: #1e40af;
  margin-bottom: 15px;
  font-weight: 600;
}

.cookie-content p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #64748b;
}

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

.btn-accept {
  background: #1f2937;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 200px;
}

.btn-refuse {
  background: transparent;
  color: #1f2937;
  border: 2px solid #1f2937;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 200px;
}

.btn-accept:hover {
  background: #374151;
}

.btn-refuse:hover {
  background: #1f2937;
  color: white;
}

/* Header */
.header {
  background: white;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 100;
}

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

.logo span {
  font-size: 24px;
  font-weight: 700;
  color: #1e40af;
}

.nav-links {
  display: flex;
  gap: 30px;
}

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

.nav-links a:hover {
  color: #1e40af;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1e40af 0%, #22d3ee 100%);
  padding: 80px 0;
  color: white;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 16px;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

.btn-primary {
  background: #1f2937;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

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

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
  padding: 80px 0;
  background: #f8fafc;
}

.about h2 {
  font-size: 36px;
  color: #22d3ee;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.about p {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: #64748b;
}

/* Investment Section */
.investment {
  padding: 80px 0;
  background: white;
}

.investment h2 {
  font-size: 36px;
  color: #22d3ee;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}

.investment>.container>p {
  font-size: 16px;
  text-align: center;
  margin-bottom: 40px;
  color: #64748b;
}

.btn-secondary {
  background: #1f2937;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: block;
  width: fit-content;
  margin: 0 auto 40px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #374151;
}

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

.investment-image img {
  width: 100%;
  max-width: 600px;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #f8fafc;
}

.services h2 {
  font-size: 36px;
  color: #22d3ee;
  margin-bottom: 60px;
  text-align: center;
  font-weight: 700;
}

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

.service-card {
  border-radius: 20px;
  padding: 30px;
  color: white;
  position: relative;
  overflow: hidden;
}

.service-card.green {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.service-card.blue {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 14px;
  margin-bottom: 25px;
  opacity: 0.9;
  line-height: 1.5;
}

.btn-service {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-service:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: white;
}

.faq h2 {
  font-size: 36px;
  color: #22d3ee;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 700;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 20px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #1e40af;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #22d3ee;
}

.faq-icon {
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 0 20px 0;
  color: #64748b;
  font-size: 16px;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #1e40af 0%, #22d3ee 100%);
  padding: 80px 0;
  color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.contact-form-wrapper h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-form-wrapper p {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.contact-form-wrapper address {
  font-style: normal;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px 20px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background: #1f2937;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
  background: #374151;
  transform: translateY(-2px);
}

/* Thank You Section */
.thank-you {
  background: linear-gradient(135deg, #1e40af 0%, #22d3ee 100%);
  padding: 120px 0;
  color: white;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.thank-you-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.thank-you-text p {
  font-size: 16px;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

.thank-you-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.footer-brand h3 {
  font-size: 24px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  text-decoration: none;
  color: #94a3b8;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #374151;
}

.footer-bottom p {
  color: #94a3b8;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 20px;
  }

  .hero-content,
  .contact-content,
  .thank-you-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1,
  .thank-you-text h1 {
    font-size: 36px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    margin-bottom: 20px;
  }

  .cookie-content {
    padding: 30px 20px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .btn-accept,
  .btn-refuse {
    min-width: auto;
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {

  .hero-text h1,
  .thank-you-text h1 {
    font-size: 28px;
  }

  .about h2,
  .investment h2,
  .services h2,
  .faq h2 {
    font-size: 28px;
  }

  .hero,
  .about,
  .investment,
  .services,
  .faq,
  .contact {
    padding: 60px 0;
  }

  .thank-you {
    padding: 80px 0;
  }
}

.privacy {
  padding: 30px 0;
}

.privacy-title {
  font-family: Inter;
  font-weight: 800;
  font-size: 38px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #0030DF;
  margin-bottom: 20px;
}