* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.8;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eaf6 100%);
    min-height: 100vh;
}

header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-name {
    font-size: 2rem;
    color: #f4d03f;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
    font-family: Georgia, serif;
}

.site-name:hover {
    color: #ffd700;
    transition: color 0.3s ease;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    color: #e8eaf6;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.3s ease, color 0.3s ease;
}

nav a:hover {
    background: rgba(244, 208, 63, 0.2);
    color: #f4d03f;
}

nav a.active {
    background: rgba(244, 208, 63, 0.3);
    color: #ffd700;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #f4d03f;
    font-size: 1.5rem;
    cursor: pointer;
}

main {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.content-block {
    background: white;
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero-section {
    background: linear-gradient(135deg, #667eea22 0%, #764ba244 100%);
    border-left: 5px solid #667eea;
}

.section-title {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.section-subtitle {
    font-size: 1.5rem;
    color: #667eea;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.image-container {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

.image-side {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin: 2rem 0;
}

.image-side img {
    width: 40%;
    border-radius: 8px;
    object-fit: cover;
    height: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-side .text-content {
    flex: 1;
}

.nav-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.nav-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.zodiac-section {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #667eea;
}

.zodiac-title {
    font-size: 1.8rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-weight: 600;
}

.zodiac-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
}

.contact-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.form-intro {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.contact-details {
    background: #e8eaf6;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-details h3 {
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-details p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 0.8rem;
}

.contact-details strong {
    color: #2c3e50;
}

.policy-header {
    background: #e8eaf6;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.policy-header h2 {
    color: #1e3a5f;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.policy-header p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h3 {
    color: #1e3a5f;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.policy-section p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-section li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

footer {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
    color: #e8eaf6;
    padding: 3rem 2rem 1.5rem 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #f4d03f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #e8eaf6;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f4d03f;
}

.footer-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #f4d03f, transparent);
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
    color: #cbd5e0;
    font-size: 0.9rem;
}

.disclaimer {
    background: #fff3cd;
    border-left: 4px solid #f4d03f;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 6px;
}

.disclaimer p {
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.6;
}

.thank-you-container {
    text-align: center;
    padding: 4rem 2rem;
}

.thank-you-container h1 {
    color: #667eea;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thank-you-container p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }

    nav ul.active {
        display: flex;
    }

    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .image-side {
        flex-direction: column;
    }

    .image-side img {
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-buttons {
        flex-direction: column;
    }

    .nav-button {
        text-align: center;
    }
}

.star-divider {
    text-align: center;
    margin: 3rem 0;
    color: #667eea;
    font-size: 1.5rem;
    letter-spacing: 1rem;
}

.content-block {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#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;
}

#cookieBanner.cookie-ribbon{
  position:fixed !important;
  z-index:999999 !important;
  right:16px;
  bottom:16px;
  width:390px;
  max-width:calc(100vw - 32px);
  padding:14px;
  box-sizing:border-box !important;
  border-radius:20px;
  background:
    linear-gradient(90deg, rgba(125,211,255,0.12), rgba(99,102,241,0.10)),
    rgba(14,14,18,0.9);
  border:1px solid rgba(255,255,255,0.16);
  box-shadow:0 22px 70px rgba(0,0,0,0.55);
  color:#f5f6fb;
  opacity:0;
  transform:translateY(16px);
  pointer-events:none;
  transition:opacity .22s ease, transform .22s ease;
  font-family:inherit;
}
#cookieBanner.cookie-ribbon.show{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
.cookie-ribbon-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.cookie-ribbon-chip{
  display:flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.14);
}
.cookie-ribbon-chip-ico{
  width:14px;
  height:14px;
  display:block;
}
.cookie-ribbon-chip-text{
  font-size:12px;
  font-weight:950;
  color:#7dd3ff;
}
.cookie-ribbon-title{
  margin:0;
  font-size:13.5px;
  font-weight:950;
  letter-spacing:0.2px;
}
.cookie-ribbon-text{
  margin:0;
  font-size:13.3px;
  line-height:1.5;
  color:rgba(245,246,251,0.86);
  overflow-wrap:anywhere;
  word-break:break-word;
}
.cookie-ribbon-links{
  margin-top:10px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.cookie-ribbon-link{
  font-size:12.5px;
  color:#7dd3ff;
  text-decoration:none;
  border-bottom:1px solid rgba(125,211,255,0.28);
}
.cookie-ribbon-link:hover{
  border-bottom-color:rgba(125,211,255,0.8);
}
.cookie-ribbon-actions{
  margin-top:14px;
  display:flex;
  gap:10px;
}
.cookie-ribbon-btn{
  width:100%;
  padding:10px 12px;
  border-radius:14px;
  font-size:13.3px;
  font-weight:950;
  cursor:pointer;
  border:1px solid transparent;
  transition:transform .08s ease, filter .15s ease, background .15s ease;
}
.cookie-ribbon-btn:active{
  transform:scale(0.99);
}
.cookie-ribbon-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-ribbon-btn.ghost{
  background:rgba(255,255,255,0.06);
  color:#f5f6fb;
  border-color:rgba(255,255,255,0.16);
}
.cookie-ribbon-btn.solid:hover{
  filter:brightness(1.06);
}
.cookie-ribbon-btn.ghost:hover{
  background:rgba(255,255,255,0.12);
}
@media (max-width:520px){
  #cookieBanner.cookie-ribbon{
    left:12px !important;
    right:12px !important;
    bottom:12px !important;
    width:auto !important;
    max-width:none !important;
  }
  .cookie-ribbon-actions{
    flex-direction:column;
  }
}
html,body{
  max-width:100%;
  overflow-x:hidden;
}
