
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background: linear-gradient(135deg, #1a2332 0%, #2d3e50 50%, #1a2332 100%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255, 215, 150, 0.8), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(200, 220, 255, 0.6), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 215, 150, 0.5), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(200, 220, 255, 0.7), transparent),
        radial-gradient(1px 1px at 33% 90%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 15% 80%, rgba(255, 215, 150, 0.6), transparent);
    background-size: 300% 300%;
    background-position: 0% 0%, 50% 50%, 100% 100%, 25% 75%, 75% 25%, 40% 60%, 60% 40%;
    animation: twinkle 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
header {
    background: rgba(26, 35, 50, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(200, 220, 255, 0.1);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo {
    font-size: 1.8rem;
    color: #f4d03f;
    text-shadow: 0 0 20px rgba(244, 208, 63, 0.5);
}
.site-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #c8dcff;
    letter-spacing: 1px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}
nav a {
    color: #c8dcff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f4d03f;
    transition: width 0.3s ease;
}
nav a:hover {
    color: #f4d03f;
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.5);
}
nav a:hover::after {
    width: 100%;
}
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #c8dcff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 10px;
}
main {
    min-height: calc(100vh - 200px);
    position: relative;
    z-index: 1;
}
.content-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    margin: 3rem auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(200, 220, 255, 0.2);
}
.content-section h1 {
    font-size: 2.5rem;
    color: #1a2332;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}
.content-section h2 {
    font-size: 1.8rem;
    color: #2d3e50;
    margin: 2rem 0 1rem;
    border-left: 4px solid #f4d03f;
    padding-left: 15px;
}
.content-section h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin: 1.5rem 0 1rem;
}
.content-section p {
    margin-bottom: 1.2rem;
    color: #2c3e50;
    text-align: justify;
}
.content-section ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #2c3e50;
}
.content-section li {
    margin-bottom: 0.5rem;
}
.content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}
.content-image.small {
    max-width: 400px;
}
.nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.nav-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 220, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}
.nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(244, 208, 63, 0.3);
    border-color: rgba(244, 208, 63, 0.5);
}
.nav-card h3 {
    color: #f4d03f;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.nav-card p {
    color: #c8dcff;
    line-height: 1.6;
}
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background: rgba(255, 255, 255, 0.98);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f4d03f;
    box-shadow: 0 0 0 3px rgba(244, 208, 63, 0.1);
}
.form-group textarea {
    min-height: 150px;
    resize: vertical;
}
.submit-btn {
    background: linear-gradient(135deg, #f4d03f 0%, #e8b923 100%);
    color: #1a2332;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 0 auto;
}
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 208, 63, 0.4);
}
.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(200, 220, 255, 0.2);
    margin: 2rem 0;
}
.contact-info h3 {
    color: #f4d03f;
    margin-bottom: 1rem;
}
.contact-info p {
    color: #c8dcff;
    margin-bottom: 0.5rem;
}
footer {
    background: rgba(26, 35, 50, 0.95);
    backdrop-filter: blur(10px);
    color: #c8dcff;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(200, 220, 255, 0.1);
    position: relative;
    z-index: 1;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-section h4 {
    color: #f4d03f;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
.footer-section ul {
    list-style: none;
}
.footer-section li {
    margin-bottom: 0.5rem;
}
.footer-section a {
    color: #c8dcff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-section a:hover {
    color: #f4d03f;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(200, 220, 255, 0.1);
    color: #95a5c6;
    font-size: 0.9rem;
}
.disclaimer-box {
    background: rgba(244, 208, 63, 0.1);
    border-left: 4px solid #f4d03f;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}
.disclaimer-box p {
    color: #2c3e50;
    margin: 0;
    font-style: italic;
}
.policy-section {
    margin: 2rem 0;
}
.policy-section h3 {
    color: #2d3e50;
    margin-bottom: 1rem;
}
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    nav ul {
        flex-direction: column;
        gap: 15px;
        display: none;
    }
    nav ul.mobile-open {
        display: flex;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .content-section {
        padding: 2rem 1.5rem;
    }
    .content-section h1 {
        font-size: 2rem;
    }
    .nav-cards {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .cookie-content {
        margin: 20px;
        padding: 2rem;
    }
}
.thank-you-section {
    text-align: center;
    padding: 4rem 2rem;
}
.thank-you-section h1 {
    font-size: 3rem;
    color: #f4d03f;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(244, 208, 63, 0.3);
}
.return-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}
.return-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(200, 220, 255, 0.3);
    border-radius: 4px;
    color: #c8dcff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.return-link:hover {
    background: rgba(244, 208, 63, 0.2);
    border-color: #f4d03f;
    color: #f4d03f;
    transform: translateY(-2px);
}
.hidden{display:none;}
#cookieBanner{
  position:fixed !important;
  z-index:999999 !important;
  left:16px;
  bottom:16px;
  width:auto;
  max-width:min(420px, calc(100vw - 32px)) !important;
  padding:14px;
  box-sizing:border-box !important;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.18);
  background:rgba(20,20,26,0.78);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:0 18px 48px rgba(0,0,0,0.38);
  color:#f3f3f6;
  opacity:0;
  transform:translateY(12px);
  pointer-events:none;
  transition:opacity .22s ease, transform .22s ease;
  font-family:inherit;
}
#cookieBanner.show{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
.cookie-top{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.cookie-badge{
  width:44px;
  height:44px;
  flex:0 0 auto;
  border-radius:12px;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.16);
  display:flex;
  align-items:center;
  justify-content:center;
}
.cookie-badge-img{
  width:24px;
  height:24px;
  display:block;
}
.cookie-copy{
  flex:1 1 auto;
  min-width:0;
}
.cookie-title{
  margin:0 0 4px;
  font-size:14px;
  font-weight:700;
  letter-spacing:0.2px;
}
.cookie-text{
  margin:0 0 8px;
  font-size:13px;
  line-height:1.45;
  color:rgba(243,243,246,0.92);
  overflow-wrap:anywhere;
  word-break:break-word;
}
.cookie-links{
  margin:0;
  font-size:12.5px;
  line-height:1.35;
  color:rgba(243,243,246,0.78);
  overflow-wrap:anywhere;
}
.cookie-link{
  color:#7dd3ff;
  text-decoration:none;
  border-bottom:1px solid rgba(125,211,255,0.35);
}
.cookie-link:hover{
  border-bottom-color:rgba(125,211,255,0.85);
}
.cookie-sep{
  margin:0 6px;
  opacity:0.6;
}
.cookie-actions{
  margin-top:12px;
  display:flex;
  gap:10px;
}
.cookie-btn{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  border:1px solid transparent;
}
.cookie-btn-primary{
  background:linear-gradient(135deg,#7dd3ff,#6366f1);
  color:#0b0b10;
  border-color:rgba(255,255,255,0.12);
}
.cookie-btn-secondary{
  background:rgba(255,255,255,0.08);
  color:#f3f3f6;
  border-color:rgba(255,255,255,0.16);
}
.cookie-btn-primary:hover{
  filter:brightness(1.05);
}
.cookie-btn-secondary:hover{
  background:rgba(255,255,255,0.12);
}
@media (max-width:520px){
  #cookieBanner{
    left:12px !important;
    right:12px !important;
    bottom:12px !important;
    top:auto !important;
    width:auto !important;
    max-width:none !important;
    transform:translateY(0) !important;
  }
  .cookie-actions{
    flex-direction:column;
  }
  .cookie-badge{
    width:40px;
    height:40px;
  }
  .cookie-badge-img{
    width:22px;
    height:22px;
  }
}
html,body{
  max-width:100%;
  overflow-x:hidden;
}
#cookieBanner.cookie-banner{
  opacity:1;
  pointer-events:auto;
  transform:none;
}
