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

* {
  box-sizing: border-box;
}

:root {
  --primary: #b8860b;
  --primary-dark: #8b6508;
  --secondary: #f0e6d3;
  --accent: #5d4e37;
  --text: #2c2416;
  --bg-light: #fdfbf7;
  --bg-card: #f7f3eb;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.3;
  color: var(--accent);
}

h1 { font-size: calc(2rem + 2vw); }
h2 { font-size: calc(1.5rem + 1.2vw); }
h3 { font-size: calc(1.3rem + 0.6vw); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }

p {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.row > * {
  padding: 0 1rem;
  width: 100%;
}

.col-md-4 { width: 100%; }
.col-md-6 { width: 100%; }
.col-lg-3 { width: 100%; }
.col-lg-4 { width: 100%; }
.col-lg-5 { width: 100%; }
.col-lg-6 { width: 100%; }
.col-lg-7 { width: 100%; }
.col-lg-8 { width: 100%; }

@media (min-width: 768px) {
  .col-md-4 { width: 33.333%; }
  .col-md-6 { width: 50%; }
}

@media (min-width: 992px) {
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.333%; }
  .col-lg-5 { width: 41.666%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.333%; }
  .col-lg-8 { width: 66.666%; }
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

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

.navbar {
  padding: 1rem 0;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(93, 78, 55, 0.08);
  position: relative;
  z-index: 100;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.navbar-brand:hover {
  color: var(--primary);
}

.navbar-nav {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text);
  font-weight: 500;
}

.nav-link:hover {
  color: var(--primary);
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 36, 22, 0.92) 0%, rgba(93, 78, 55, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-card);
}

.text-center { text-align: center; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(93, 78, 55, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(93, 78, 55, 0.12);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: 1.5rem;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.step-item:last-child {
  margin-bottom: 0;
}

.blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 2rem;
  font-size: 1.375rem;
  font-style: italic;
  color: var(--accent);
  margin: 2rem 0;
}

.blockquote-author {
  font-style: normal;
  font-size: 1rem;
  color: var(--text);
  margin-top: 1rem;
}

.stat-box {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text);
  font-size: 1rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 4rem 0;
}

.cta-section h2 {
  color: var(--white);
}

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

.cta-section .btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--accent);
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid #d4cfc5;
  border-radius: 4px;
  background: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.footer {
  background: var(--accent);
  color: var(--secondary);
  padding: 3rem 0 1.5rem;
}

.footer a {
  color: var(--secondary);
}

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

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-bottom {
  border-top: 1px solid rgba(240, 230, 211, 0.2);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  color: var(--white);
  padding: 1.25rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
}

.cookie-banner a {
  color: var(--primary);
}

.page-header {
  background: var(--bg-card);
  padding: 4rem 0;
  text-align: center;
}

.content-page {
  padding: 4rem 0;
}

.content-page h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.content-page p,
.content-page ul {
  margin-bottom: 1rem;
}

.content-page ul {
  padding-left: 1.5rem;
}

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

.response-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.response-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2rem;
}

.decorative-line {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 1rem auto 2rem;
}

.img-rounded {
  border-radius: 8px;
}

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

.book-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(93, 78, 55, 0.06);
}

.book-item:last-child {
  margin-bottom: 0;
}

.book-number {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
}

.book-content h4 {
  margin-bottom: 0.5rem;
}

.book-content p {
  margin-bottom: 0;
  color: var(--text);
}

.error-icon {
  width: 50px;
  height: 50px;
  background: #fef2f2;
  border: 2px solid #dc2626;
  color: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.25rem;
}

.bg-gradient-decor {
  position: relative;
}

.bg-gradient-decor::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(184, 134, 11, 0.05) 100%);
  pointer-events: none;
}

@media (max-width: 991px) {
  .hero {
    min-height: 70vh;
  }
  
  .section {
    padding: 3.5rem 0;
  }
  
  .navbar-nav {
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    margin: 0 auto;
  }
  
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
  
  .row > * {
    margin-bottom: 1.5rem;
  }
  
  .row > *:last-child {
    margin-bottom: 0;
  }
}
