:root {
    --soft-indigo: #6B7AE5;
    --pale-lavender: #E9D5FF;
    --moonlight-white: #FFFFFF;
    --light-grey: #F3F4F6;
    --muted-gold: #C9A961;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --border-color: #E5E7EB;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--moonlight-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--soft-indigo);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--muted-gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 4rem 0;
}

header {
    background-color: var(--moonlight-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-name {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--soft-indigo);
}

.menu-button {
    background: none;
    border: 2px solid var(--soft-indigo);
    color: var(--soft-indigo);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.menu-button:hover {
    background-color: var(--soft-indigo);
    color: var(--moonlight-white);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 200;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nav-overlay.active {
    display: flex;
    opacity: 1;
    justify-content: center;
    align-items: center;
}

.nav-container {
    background-color: var(--moonlight-white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(107, 122, 229, 0.15);
    max-width: 500px;
    width: 90%;
    position: relative;
}

.nav-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.nav-close:hover {
    color: var(--text-primary);
}

.nav-menu {
    list-style: none;
    padding: 0;
}

.nav-menu li {
    margin-bottom: 1.5rem;
}

.nav-menu a {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    color: var(--text-primary);
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.nav-menu a:hover {
    color: var(--soft-indigo);
    padding-left: 1rem;
}

.hero {
    background: linear-gradient(135deg, rgba(233, 213, 255, 0.3) 0%, rgba(243, 244, 246, 0.3) 100%);
    padding: 5rem 0 4rem;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(107, 122, 229, 0.12);
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--soft-indigo);
}

.hero-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: var(--soft-indigo);
    color: var(--moonlight-white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--muted-gold);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--pale-lavender);
    color: var(--soft-indigo);
}

.btn-secondary:hover {
    background-color: var(--soft-indigo);
    color: var(--moonlight-white);
}

.content-section {
    padding: 4rem 0;
}

.section-title {
    margin-bottom: 2rem;
    color: var(--soft-indigo);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.content-grid.two-col {
    grid-template-columns: 2fr 1fr;
}

.content-grid.two-col.reverse {
    grid-template-columns: 1fr 2fr;
}

.content-card {
    background-color: var(--moonlight-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 12px rgba(107, 122, 229, 0.08);
}

.content-image {
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(107, 122, 229, 0.1);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.full-width-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    margin: 3rem 0;
    box-shadow: 0 4px 20px rgba(107, 122, 229, 0.12);
}

.zodiac-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(107, 122, 229, 0.08);
}

.zodiac-table th {
    background-color: var(--soft-indigo);
    color: var(--moonlight-white);
    padding: 1.25rem;
    text-align: left;
    font-family: 'Lora', serif;
    font-weight: 700;
}

.zodiac-table td {
    background-color: var(--moonlight-white);
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.zodiac-table tr:last-child td {
    border-bottom: none;
}

.zodiac-table tr:hover td {
    background-color: var(--light-grey);
}

.form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
    background-color: var(--moonlight-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(107, 122, 229, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--soft-indigo);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.image-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(107, 122, 229, 0.1);
}

footer {
    background: linear-gradient(135deg, rgba(243, 244, 246, 0.8) 0%, rgba(233, 213, 255, 0.2) 100%);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-block {
    background-color: var(--moonlight-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(107, 122, 229, 0.06);
}

.footer-block h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--soft-indigo);
}

.footer-block ul {
    list-style: none;
    padding: 0;
}

.footer-block ul li {
    margin-bottom: 0.75rem;
}

.footer-block p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.disclaimer-text {
    background-color: var(--light-grey);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

.policy-header {
    background: linear-gradient(135deg, rgba(233, 213, 255, 0.3) 0%, rgba(243, 244, 246, 0.3) 100%);
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.policy-title {
    font-size: 2.5rem;
    color: var(--soft-indigo);
    margin-bottom: 1rem;
}

.contact-info-box {
    background-color: var(--moonlight-white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--soft-indigo);
    margin-bottom: 2rem;
    box-shadow: 0 2px 12px rgba(107, 122, 229, 0.08);
}

.contact-info-box p {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h3 {
    color: var(--soft-indigo);
    margin-bottom: 1rem;
}

.thank-you-section {
    text-align: center;
    padding: 5rem 0;
}

.thank-you-image {
    max-width: 400px;
    margin: 0 auto 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(107, 122, 229, 0.12);
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .content-grid.two-col,
    .content-grid.two-col.reverse {
        grid-template-columns: 1fr;
    }

    .form-section {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .nav-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        height: 300px;
    }

    .full-width-image {
        height: 300px;
    }
}

#cookieBanner.cookie-panel-left{
  position:fixed !important;
  z-index:999999 !important;
  left:16px;
  bottom:16px;
  width:360px;
  max-width:calc(100vw - 32px);
  padding:14px 14px 12px;
  box-sizing:border-box !important;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(16,16,20,0.92), rgba(16,16,20,0.72));
  border:1px solid rgba(255,255,255,0.14);
  box-shadow:0 24px 80px rgba(0,0,0,0.55);
  color:#f5f6fb;
  opacity:0;
  transform:translateX(-18px);
  pointer-events:none;
  transition:opacity .22s ease, transform .22s ease;
  font-family:inherit;
}

#cookieBanner.cookie-panel-left.show{
  opacity:1;
  transform:translateX(0);
  pointer-events:auto;
}

.cookie-panel-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}

.cookie-chip{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
}

.cookie-chip-img{
  width:16px;
  height:16px;
  display:block;
}

.cookie-chip-text{
  font-size:12px;
  font-weight:900;
  letter-spacing:0.2px;
  color:rgba(125,211,255,0.95);
}

.cookie-panel-title{
  margin:0;
  font-size:13px;
  font-weight:950;
  letter-spacing:0.2px;
  color:rgba(245,246,251,0.92);
}

.cookie-panel-text{
  margin:0;
  font-size:13px;
  line-height:1.5;
  color:rgba(245,246,251,0.84);
  overflow-wrap:anywhere;
  word-break:break-word;
}

.cookie-panel-links{
  margin-top:10px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.cookie-panel-link{
  font-size:12.5px;
  color:rgba(125,211,255,0.95);
  text-decoration:none;
  border-bottom:1px solid rgba(125,211,255,0.26);
}

.cookie-panel-link:hover{
  border-bottom-color:rgba(125,211,255,0.75);
}

.cookie-panel-actions{
  margin-top:12px;
  display:flex;
  gap:10px;
}

.cookie-panel-btn{
  width:100%;
  padding:10px 12px;
  border-radius:14px;
  font-size:13px;
  font-weight:950;
  cursor:pointer;
  border:1px solid transparent;
  transition:transform .08s ease, filter .15s ease, background .15s ease;
}

.cookie-panel-btn:active{
  transform:scale(0.99);
}

.cookie-panel-btn-solid{
  background:linear-gradient(135deg, rgba(125,211,255,0.95), rgba(99,102,241,0.95));
  color:#0b0b10;
  border-color:rgba(255,255,255,0.10);
}

.cookie-panel-btn-ghost{
  background:rgba(255,255,255,0.06);
  color:#f5f6fb;
  border-color:rgba(255,255,255,0.14);
}

.cookie-panel-btn-solid:hover{
  filter:brightness(1.05);
}

.cookie-panel-btn-ghost:hover{
  background:rgba(255,255,255,0.10);
}

@media (max-width:520px){
  #cookieBanner.cookie-panel-left{
    left:12px !important;
    right:12px !important;
    bottom:12px !important;
    width:auto !important;
    max-width:none !important;
    transform:translateY(16px);
    border-radius:18px;
  }
  #cookieBanner.cookie-panel-left.show{
    transform:translateY(0);
  }
  .cookie-panel-actions{
    flex-direction:column;
  }
}

html,body{
  max-width:100%;
  overflow-x:hidden;
}

#cookieBanner.cookie-wow{
  position:fixed !important;
  z-index:999999 !important;
  left:16px;
  bottom:16px;
  width:380px;
  max-width:calc(100vw - 32px);
  padding:16px;
  box-sizing:border-box !important;
  border-radius:22px;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(125,211,255,0.18), transparent 45%),
    linear-gradient(180deg, rgba(16,16,20,0.92), rgba(16,16,20,0.85));
  border:1px solid rgba(255,255,255,0.16);
  box-shadow:0 30px 90px rgba(0,0,0,0.65);
  color:#f5f6fb;
  opacity:0;
  transform:translateY(18px) scale(0.97);
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
  font-family:inherit;
}

#cookieBanner.cookie-wow.show{
  opacity:1;
  transform:translateY(0) scale(1);
  pointer-events:auto;
}

.cookie-wow-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:10px;
}

.cookie-wow-chip{
  display:flex;
  align-items:center;
  gap:8px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.14);
  font-size:12px;
  font-weight:900;
  color:#7dd3ff;
}

.cookie-wow-ico{
  width:14px;
  height:14px;
  display:block;
}

.cookie-wow-title{
  margin:0;
  font-size:13px;
  font-weight:950;
  letter-spacing:0.2px;
  color:rgba(245,246,251,0.95);
}

.cookie-wow-text{
  margin:0;
  font-size:13.5px;
  line-height:1.55;
  color:rgba(245,246,251,0.86);
  overflow-wrap:anywhere;
  word-break:break-word;
}

.cookie-wow-links{
  margin-top:12px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.cookie-wow-links a{
  font-size:12.5px;
  color:#7dd3ff;
  text-decoration:none;
  border-bottom:1px solid rgba(125,211,255,0.3);
}

.cookie-wow-links a:hover{
  border-bottom-color:rgba(125,211,255,0.85);
}

.cookie-wow-actions{
  margin-top:16px;
  display:flex;
  gap:12px;
}

.cookie-wow-btn{
  width:100%;
  padding:11px 14px;
  border-radius:16px;
  font-size:13.5px;
  font-weight:900;
  cursor:pointer;
  border:1px solid transparent;
  transition:transform .08s ease, filter .15s ease, background .15s ease;
}

.cookie-wow-btn:active{
  transform:scale(0.98);
}

.cookie-wow-btn.solid{
  background:linear-gradient(135deg,#7dd3ff,#6366f1);
  color:#0b0b10;
}

.cookie-wow-btn.ghost{
  background:rgba(255,255,255,0.06);
  color:#f5f6fb;
  border-color:rgba(255,255,255,0.18);
}

.cookie-wow-btn.solid:hover{
  filter:brightness(1.06);
}

.cookie-wow-btn.ghost:hover{
  background:rgba(255,255,255,0.12);
}

@media (max-width:520px){
  #cookieBanner.cookie-wow{
    left:12px !important;
    right:12px !important;
    bottom:12px !important;
    width:auto !important;
    max-width:none !important;
    border-radius:22px;
  }
  .cookie-wow-actions{
    flex-direction:column;
  }
}

html,body{
  max-width:100%;
  overflow-x:hidden;
}
