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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Playfair Display', serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  color: white;
  padding: 20px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-popup.show {
  transform: translateY(0);
}

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

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: #d4af37;
  color: white;
}

.cookie-btn.decline {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-btn:hover {
  transform: translateY(-2px);
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-brand {
  text-decoration: none;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #d4af37;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

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

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

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-button {
  display: inline-block;
  background: #d4af37;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #b8941f;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Content Sections */
.investment-simple,
.financial-freedom,
.risk-minimization {
  padding: 80px 0;
  background: white;
}

.investment-simple {
  background: #f8f9fa;
}

.content-row {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.content-row.reverse {
  flex-direction: row-reverse;
}

.image-col,
.text-col {
  flex: 1;
}

.image-col img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.text-col h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1a1a2e;
}

.text-col p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #666;
}

/* Investment Types */
.investment-types {
  padding: 80px 0;
  background: #1a1a2e;
  color: white;
  text-align: center;
}

.investment-types h2 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 3rem;
}

.investment-cards {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.investment-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.investment-card:hover {
  transform: translateY(-10px);
}

.investment-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #d4af37;
}

.investment-card p {
  opacity: 0.9;
}

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

/* News and Insights */
.news-insights {
  padding: 80px 0;
  background: #f8f9fa;
}

.news-insights h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-align: center;
  color: #1a1a2e;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 2rem;
}

.news-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.news-card img {
  width: 100%;
  object-fit: cover;
}

.news-content {
  padding: 1.5rem;
}

.news-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

.news-content p {
  color: #666;
  font-size: 0.95rem;
}

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

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

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.contact-form {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4af37;
  background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: #d4af37;
  color: white;
  border: none;
  border-radius: 5px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer-brand p {
  opacity: 0.8;
  margin-top: 0.5rem;
}

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

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #d4af37;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #d4af37;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-text h1 {
      font-size: 3rem;
  }
  
  .content-row {
      gap: 2rem;
  }
  
  .investment-cards {
      flex-direction: column;
  }
  
  .contact-content {
      gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
      display: flex;
  }
  
  .nav-menu {
      position: fixed;
      top: 100%;
      left: 0;
      width: 100%;
      background: white;
      flex-direction: column;
      padding: 2rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transform: translateY(-100%);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
  }
  
  .nav-menu.active {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
  }
  
  .hero-content {
      flex-direction: column;
      text-align: center;
      gap: 2rem;
  }
  
  .hero-text h1 {
      font-size: 2.5rem;
  }
  
  .content-row,
  .content-row.reverse {
      flex-direction: column;
      gap: 2rem;
  }
  
  .text-col h2 {
      font-size: 2rem;
  }
  
  .investment-types h2 {
      font-size: 2rem;
  }
  
  .contact-content {
      flex-direction: column;
  }
  
  .footer-content {
      flex-direction: column;
      gap: 2rem;
  }
  
  .footer-links {
      gap: 2rem;
  }
  
  .cookie-content {
      flex-direction: column;
      text-align: center;
      gap: 15px;
  }
  
  .cookie-buttons {
      justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
      padding: 0 15px;
  }
  
  .nav {
      padding: 1rem 15px;
  }
  
  .hero {
      padding: 100px 0 60px;
  }
  
  .hero-text h1 {
      font-size: 2rem;
  }
  
  .hero-text p {
      font-size: 1rem;
  }
  
  .cta-button {
      padding: 12px 24px;
      font-size: 0.9rem;
  }
  
  .investment-simple,
  .financial-freedom,
  .risk-minimization,
  .investment-types,
  .news-insights,
  .contact {
      padding: 60px 0;
  }
  
  .text-col h2 {
      font-size: 1.8rem;
  }
  
  .investment-types h2,
  .news-insights h2,
  .contact-info h2 {
      font-size: 1.8rem;
  }
  
  .contact-form {
      padding: 1.5rem;
  }
}

.legal {
  padding: 120px 0 60px;
}