:root {
  --primary-dark: #0F1C3A;
  --accent-gold: #D4AF37;
  --ivory: #FDFDFD;
  --charcoal: #3C3F41;
  --text-dark: #2a2a2a;
  --border-light: #e8e8e8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--ivory);
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.78;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--primary-dark);
}

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

h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  margin-top: 4rem;
  font-weight: 600;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

em {
  font-style: italic;
  color: var(--primary-dark);
}

.container-luxury {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 120px;
}

@media (max-width: 1024px) {
  .container-luxury {
    padding: 0 60px;
  }
}

@media (max-width: 768px) {
  .container-luxury {
    padding: 0 30px;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--ivory);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1.5rem 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .header-content {
    padding: 1rem 30px;
  }
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.35s ease;
}

.logo:hover {
  color: var(--accent-gold);
}

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

@media (max-width: 768px) {
  .nav-menu {
    gap: 1rem;
    flex-wrap: wrap;
  }
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1rem;
  transition: color 0.35s ease;
}

.nav-menu a:hover {
  color: var(--accent-gold);
}

.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 8rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    height: 400px;
    margin-bottom: 4rem;
  }
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 28, 58, 0.3);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--ivory);
  max-width: 900px;
  padding: 2rem;
}

.hero-content h1 {
  color: var(--ivory);
  font-size: 3rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
}

.section {
  margin: 12rem 0;
}

@media (max-width: 768px) {
  .section {
    margin: 6rem 0;
  }
}

.section-split {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 4rem;
  align-items: center;
  margin: 10rem 0;
}

@media (max-width: 768px) {
  .section-split {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 5rem 0;
  }
}

.section-split.reverse {
  grid-template-columns: 45% 55%;
}

@media (max-width: 768px) {
  .section-split.reverse {
    grid-template-columns: 1fr;
  }
}

.section-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.35s ease;
}

.section-image:hover {
  transform: scale(1.03);
}

.section-text h2 {
  color: var(--primary-dark);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 2rem;
  transition: all 0.35s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card:hover {
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
  border-color: var(--accent-gold);
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.card a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.35s ease;
}

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

.accordion {
  max-width: 900px;
  margin: 4rem auto;
}

.accordion-item {
  border: 1px solid var(--border-light);
  margin-bottom: 1rem;
  border-radius: 4px;
  overflow: hidden;
}

.accordion-header {
  background: white;
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.35s ease;
  user-select: none;
}

.accordion-header:hover {
  background: rgba(212, 175, 55, 0.05);
  color: var(--accent-gold);
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.3rem;
}

.accordion-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform 0.35s ease;
  color: var(--accent-gold);
}

.accordion-item.active .accordion-toggle {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--ivory);
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  padding: 0 1.5rem 1.5rem;
}

.accordion-content p {
  text-align: justify;
}

.disclaimer-box {
  background: rgba(212, 175, 55, 0.08);
  border-left: 4px solid var(--accent-gold);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.list-item {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  position: relative;
}

.list-item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
  border-color: var(--accent-gold);
}

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

.blog-card-content {
  padding: 2rem;
}

.blog-card-content h3 {
  margin-top: 0;
}

.blog-card-content a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.35s ease;
}

.blog-card-content a:hover {
  color: var(--primary-dark);
}

.contact-form {
  max-width: 600px;
  margin: 3rem auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  transition: border-color 0.35s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary-dark);
  color: var(--ivory);
  text-decoration: none;
  border: none;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s ease;
}

.btn:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  transform: scale(1.03);
}

.btn-small {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

footer {
  background: var(--primary-dark);
  color: var(--ivory);
  padding: 4rem 120px 2rem;
  margin-top: 8rem;
}

@media (max-width: 768px) {
  footer {
    padding: 2rem 30px 1rem;
  }
}

.footer-content {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-section h4 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

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

.footer-section a {
  color: var(--ivory);
  text-decoration: none;
  transition: color 0.35s ease;
}

.footer-section a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  text-align: center;
  font-size: 0.9rem;
}

.educational-notice {
  text-align: center;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.numbering {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
}

.numbering li {
  counter-increment: item;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  position: relative;
}

.numbering li:before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  background: var(--accent-gold);
  color: var(--primary-dark);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  color: var(--ivory);
  padding: 1.5rem;
  z-index: 2000;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  display: none;
}

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

.cookie-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cookie-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
}

.cookie-text a {
  color: var(--accent-gold);
  text-decoration: none;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  transition: all 0.35s ease;
  font-size: 0.9rem;
}

.cookie-btn-accept {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.cookie-btn-accept:hover {
  background: #e5c158;
}

.cookie-btn-reject {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--ivory);
}

.cookie-btn-reject:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--accent-gold);
}

.thank-you-page {
  text-align: center;
  padding: 6rem 0;
}

.thank-you-page h1 {
  color: var(--primary-dark);
  margin-bottom: 2rem;
}

.thank-you-page p {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.thank-you-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  color: var(--accent-gold);
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Lato:wght@400;700&display=swap');
