

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafbfc;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a2f4a;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: #5a7ba6;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #d4a574;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8ecf1;
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 40px;
    height: 40px;
    background-color: #5a7ba6;
    border-radius: 50%;
}

.site-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a2f4a;
}

.menu-trigger {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #5a7ba6;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.menu-trigger:hover {
    color: #d4a574;
}

.nav-drawer {
    display: none;
    background-color: #ffffff;
    border-bottom: 1px solid #e8ecf1;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.nav-drawer.active {
    display: block;
}

.nav-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.nav-list li a {
    font-size: 1rem;
    color: #2c3e50;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-list li a:hover {
    color: #d4a574;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a2f4a;
}

.hero {
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.hero-image {
    width: 100%;
    height: 400px;
    background-color: #e8ecf1;
    margin-bottom: 2rem;
    object-fit: cover;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a2f4a;
}

.hero-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #4a5568;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.9rem 2rem;
    border: 2px solid #5a7ba6;
    background-color: #ffffff;
    color: #5a7ba6;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    border-radius: 4px;
    display: inline-block;
}

.btn:hover {
    background-color: #5a7ba6;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #5a7ba6;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #4a6a96;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.content-grid.two-col {
    grid-template-columns: 2fr 1fr;
}

.content-grid.reverse {
    grid-template-columns: 1fr 2fr;
}

.content-image {
    width: 100%;
    height: auto;
    min-height: 250px;
    background-color: #e8ecf1;
    object-fit: cover;
    border-radius: 4px;
}

.full-width-image {
    width: 100%;
    height: 300px;
    background-color: #e8ecf1;
    margin: 2rem 0;
    object-fit: cover;
}

.zodiac-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: #ffffff;
    border: 1px solid #e8ecf1;
}

.zodiac-table th,
.zodiac-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid #e8ecf1;
}

.zodiac-table th {
    background-color: #f0f4f8;
    color: #1a2f4a;
    font-weight: 600;
}

.zodiac-table tr:last-child td {
    border-bottom: none;
}

.form-section {
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid #e8ecf1;
    border-radius: 4px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d1d9e0;
    background-color: #fafbfc;
    color: #2c3e50;
    font-family: inherit;
    font-size: 1rem;
    border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5a7ba6;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    background-color: #f0f4f8;
    padding: 2rem;
    border-radius: 4px;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #1a2f4a;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.footer {
    background-color: #f0f4f8;
    border-top: 1px solid #d1d9e0;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1a2f4a;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #4a5568;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: #5a7ba6;
}

.footer-divider {
    border: none;
    border-top: 1px solid #d1d9e0;
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
}

.policy-header {
    background-color: #f0f4f8;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #5a7ba6;
}

.policy-header h1 {
    margin-bottom: 1rem;
}

.policy-contact {
    font-size: 0.95rem;
    color: #4a5568;
}

.policy-contact p {
    margin-bottom: 0.3rem;
}

.policy-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2f4a;
}

.policy-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.disclaimer-box {
    background-color: #fff8e1;
    border-left: 4px solid #d4a574;
    padding: 1.5rem;
    margin: 2rem 0;
    font-size: 0.95rem;
    color: #5d4e37;
}

@media (max-width: 768px) {
    .header-inner {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-image {
        height: 250px;
    }

    .content-grid.two-col,
    .content-grid.reverse {
        grid-template-columns: 1fr;
    }

    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cookie-notice-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-notice-buttons {
        width: 100%;
        justify-content: center;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

.content-image,
.full-width-image,
.hero-image,
.decorative-image {
    background: linear-gradient(135deg, #e8ecf1 0%, #d1d9e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.decorative-image {
    width: 100%;
    height: 200px;
    margin: 2rem 0;
    object-fit: cover;
}

.thank-you-section {
    text-align: center;
    padding: 4rem 2rem;
}

.thank-you-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    background-color: #e8ecf1;
    border-radius: 50%;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.image-grid-item {
    width: 100%;
    height: 200px;
    background-color: #e8ecf1;
    object-fit: cover;
    border-radius: 4px;
}

#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;
}
