:root {
  --pale-yellow: #FFF9C4;
  --pale-yellow-green: #E6EE9C;
  --sunrise: #FFCC80;
  --text-dark: #3E2723;
  --bg-light: #FFFDE7;
  --white: #FFFFFF;
}

body {
  margin: 0;
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
}

/* Header */
header {
  background-color: var(--white);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: var(--text-dark);
}

.logo img {
  height: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
}

nav a:hover {
  color: var(--sunrise);
}

/* Blocks */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.block {
  margin-bottom: 4rem;
}

.flex-block {
  display: flex;
  align-items: center;
  gap: 3rem;
}

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

.flex-block img {
  width: 50%;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  object-fit: cover;
}

.flex-block .text-content {
  width: 50%;
}

h1, h2, h3 {
  color: var(--text-dark);
  margin-top: 0;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

/* Accordion */
.accordion-item {
  border-bottom: 1px solid var(--pale-yellow-green);
  margin-bottom: 1rem;
}

.accordion-header {
  padding: 1rem 0;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
}

.accordion-content {
  display: none;
  padding-bottom: 1rem;
}

.accordion-content.active {
  display: block;
}

/* Table */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.schedule-table th, .schedule-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--pale-yellow);
}

.schedule-table th {
  background-color: var(--pale-yellow-green);
  font-weight: bold;
}

/* Cards */
.cards-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.price-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-top: 6px solid var(--sunrise);
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 1rem 0;
  color: var(--sunrise);
}

/* Selling Text Block */
.selling-text-block {
  background-color: var(--pale-yellow-green);
  padding: 4rem 2rem;
  border-radius: 16px;
  text-align: center;
}

.text-content-centered {
  max-width: 800px;
  margin: 0 auto;
}

/* Form */
.form-container {
  background: var(--pale-yellow);
  padding: 3rem;
  border-radius: 16px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

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

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

.form-group input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
}

button {
  background-color: var(--sunrise);
  color: var(--text-dark);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}

button:hover {
  background-color: #FFB74D;
  transform: translateY(-2px);
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  display: none;
  box-sizing: border-box;
  flex-direction: column;
  gap: 1rem;
}

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

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

.cookie-buttons button {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--text-dark);
}

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

#cookie-settings {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  border-top: 1px solid #ccc;
  padding-top: 1rem;
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: left;
}

.footer-links a, .social-links a {
  color: var(--pale-yellow);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-links a:hover, .social-links a:hover {
  color: var(--sunrise);
}

.social-links {
  display: flex;
  gap: 1rem;
}

@media (max-width: 768px) {
  .flex-block, .flex-block.reverse {
    flex-direction: column;
  }
  
  .flex-block img, .flex-block .text-content {
    width: 100%;
  }
  
  header {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}