/* Color Scheme:
 * Pale yellow: #FFFACD
 * Pale yellow-green: #E9F5DB
 * Sunrise: #FFDAB9
 */
:root {
  --pale-yellow: #FFFACD;
  --pale-green: #E9F5DB;
  --sunrise: #FFDAB9;
  --text-dark: #333333;
  --white: #FFFFFF;
}

* {
  box-sizing: border-box;
}

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

header {
  background-color: var(--pale-green);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: 1px;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}

nav a:hover {
  color: #555;
}

.hero-banner {
  background-color: var(--pale-yellow);
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.hero-banner img {
  max-width: 100%;
  max-height: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.hero-text {
  margin-top: 30px;
}

.hero-text h1 {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.hero-text p {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto;
}

/* Sections */
section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.block-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
  gap: 50px;
}

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

.block-col {
  flex: 1;
  min-width: 300px;
}

.block-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  display: block;
}

.block-col h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.block-col p {
  font-size: 1.1em;
  margin-bottom: 15px;
}

.block-col ul {
  font-size: 1.1em;
  padding-left: 20px;
}

/* Block 4: Accordions */
.block-accordion {
  margin-bottom: 80px;
}

.block-accordion h2 {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 40px;
}

.accordion {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  text-align: left;
  background: var(--pale-yellow);
  border: none;
  padding: 20px;
  font-size: 18px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
  transition: background 0.3s;
}

.accordion-header:hover {
  background: #fdf5b5;
}

.accordion-content {
  display: none;
  padding: 20px;
  background: var(--white);
  border-top: 1px solid #e0e0e0;
  font-size: 1.1em;
}

/* Block 5: Tables */
.block-table {
  margin-bottom: 80px;
}

.block-table h2 {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 40px;
}

table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

th, td {
  border: 1px solid #e0e0e0;
  padding: 16px;
  text-align: center;
  font-size: 1.1em;
}

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

/* Block 6: Cards */
.block-cards {
  margin-bottom: 80px;
}

.block-cards h2 {
  text-align: center;
  font-size: 2.2em;
  margin-bottom: 40px;
}

.cards-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 40px 20px;
  width: 320px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.card h3 {
  color: var(--text-dark);
  font-size: 1.5em;
  margin-bottom: 10px;
}

.card-price {
  font-size: 32px;
  font-weight: bold;
  color: #ff8c00;
  margin: 20px 0;
}

.card p {
  font-size: 1.1em;
  color: #555;
}

/* Block 7: Text only */
.block-text-only {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
  background-color: var(--pale-yellow);
  padding: 60px;
  border-radius: 16px;
}

.block-text-only h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
}

.block-text-only p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

/* Form */
.subscribe-form {
  background: var(--sunrise);
  padding: 60px 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.subscribe-form h2 {
  font-size: 2.2em;
  margin-bottom: 30px;
}

.subscribe-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subscribe-form input {
  display: block;
  width: 100%;
  max-width: 450px;
  margin: 10px auto;
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.subscribe-form button {
  background: var(--text-dark);
  color: var(--white);
  border: none;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s;
}

.subscribe-form button:hover {
  background: #111;
}

/* Footer */
footer {
  background-color: var(--pale-green);
  padding: 60px 20px 40px;
  text-align: center;
  margin-top: 60px;
}

footer p {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.footer-links {
  margin-top: 30px;
}

.footer-links a {
  margin: 0 15px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1.1em;
}

.footer-links a:hover {
  text-decoration: underline;
}

.social-icons {
  margin: 30px 0;
}

.social-icons img {
  width: 40px;
  height: 40px;
  margin: 0 12px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(34, 34, 34, 0.95);
  color: #fff;
  padding: 25px;
  text-align: center;
  z-index: 9999;
  display: none;
  backdrop-filter: blur(5px);
}

#cookie-banner p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.cookie-buttons button {
  margin: 0 10px;
  padding: 12px 24px;
  cursor: pointer;
  background: var(--pale-green);
  color: var(--text-dark);
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  transition: background 0.3s;
}

.cookie-buttons button:hover {
  background: #d4e8c1;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 20px;
  }
  nav {
    margin-top: 20px;
  }
  nav a {
    margin: 0 10px;
  }
  .block-row, .block-row.reverse {
    flex-direction: column;
    gap: 30px;
  }
  .hero-text h1 {
    font-size: 2.5em;
  }
}