:root {
    --gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 50%, #7dd3fc 100%);
    --gradient-hero: linear-gradient(135deg, #0c4a6e 0%, #0369a1 30%, #0ea5e9 70%, #38bdf8 100%);
    --gradient-button: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #22d3ee 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(240,249,255,0.8) 100%);
    --gradient-soft: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 50%, #bae6fd 100%);

    --color-sky-50: #f0f9ff;
    --color-sky-100: #e0f2fe;
    --color-sky-200: #bae6fd;
    --color-sky-300: #7dd3fc;
    --color-sky-400: #38bdf8;
    --color-sky-500: #0ea5e9;
    --color-sky-600: #0284c7;
    --color-sky-700: #0369a1;
    --color-sky-800: #075985;
    --color-sky-900: #0c4a6e;

    --color-cyan-400: #22d3ee;
    --color-cyan-500: #06b6d4;

    --text-primary: #0c4a6e;
    --text-secondary: #64748b;
    --text-light: #94a3b8;

    --shadow-soft: 0 4px 20px rgba(14, 165, 233, 0.1);
    --shadow-medium: 0 8px 30px rgba(14, 165, 233, 0.15);
    --shadow-glow: 0 0 40px rgba(14, 165, 233, 0.2);

    --border-gradient: linear-gradient(135deg, var(--color-sky-300), var(--color-cyan-400), var(--color-sky-300));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--gradient-soft);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: 'Quicksand', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

nav ul li a:hover {
    color: var(--color-sky-600);
    background: var(--color-sky-50);
}

nav ul li.nav-contact a {
    background: var(--gradient-button);
    color: white !important;
    padding: 12px 24px;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    border: none;
}

nav ul li.nav-contact a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(14, 165, 233, 0.4);
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 50%, #38bdf8 100%);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: var(--color-sky-50);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hero {
    background: var(--gradient-hero);
    padding: 100px 20px 120px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(125, 211, 252, 0.2) 0%, transparent 40%);
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--color-sky-50), transparent);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 52px;
    color: white;
    margin-bottom: 24px;
    font-weight: 700;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 1s ease-out;
    letter-spacing: -1px;
}

.hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    font-weight: 500;
}

.hero-image-container {
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-float {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    animation: float 6s ease-in-out infinite;
}

.hero-float:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-float:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.hero-float:nth-child(3) {
    width: 40px;
    height: 40px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--gradient-card);
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 3px;
    background: var(--border-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.image-frame:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-glow), var(--shadow-medium);
}

.image-frame:hover::before {
    opacity: 1;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1) saturate(1);
}

.image-frame:hover img {
    filter: brightness(1.05) saturate(1.1);
    transform: scale(1.03);
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    background:
        linear-gradient(white, white) padding-box,
        var(--border-gradient) border-box;
}

.content-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    filter: brightness(1.05) saturate(1.1);
}

.info-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.info-card-mini {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-button);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.info-card-mini:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.info-card-mini:hover::before {
    transform: scaleX(1);
}

.info-card-mini h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    font-weight: 700;
}

.info-card-mini p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.content-section {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 24px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(14, 165, 233, 0.08);
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.content-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 32px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    font-weight: 700;
    position: relative;
}

.content-section h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 24px;
    color: var(--text-primary);
    margin: 30px 0 15px;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 18px;
    color: var(--text-secondary);
    text-align: justify;
    font-size: 16px;
}

.content-section ul, .content-section ol {
    margin: 20px 0 20px 30px;
}

.content-section li {
    margin-bottom: 12px;
    color: var(--text-secondary);
    position: relative;
}

.content-section ul li::marker {
    color: var(--color-sky-500);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 35px 0;
}

.card {
    background: linear-gradient(145deg, #ffffff 0%, var(--color-sky-50) 100%);
    padding: 35px;
    border-radius: 20px;
    border: none;
    border-left: 5px solid transparent;
    border-image: var(--gradient-button) 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.card:hover::before {
    opacity: 0.03;
}

.card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
}

.card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 35px 0;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.image-gallery .image-frame {
    aspect-ratio: 16/10;
}

.image-gallery .image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.disclaimer-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 5px solid #f59e0b;
    padding: 20px 25px;
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.15);
}

.disclaimer-box p {
    color: #92400e;
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

.contact-info {
    background: linear-gradient(145deg, var(--color-sky-50) 0%, var(--color-sky-100) 100%);
    padding: 30px;
    border-radius: 16px;
    margin: 25px 0;
    border: 1px solid rgba(14, 165, 233, 0.15);
}

.contact-info p {
    margin: 12px 0;
    font-size: 15px;
    color: var(--text-secondary);
}

.contact-info strong {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

form {
    max-width: 600px;
    margin: 35px auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--color-sky-200);
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-sky-400);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: var(--gradient-button);
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
    font-family: 'Nunito', sans-serif;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
}

.thank-you-section {
    text-align: center;
    padding: 100px 20px;
}

.thank-you-section h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 48px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    font-weight: 700;
}

.thank-you-section p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 35px;
}

.btn-home {
    display: inline-block;
    background: var(--gradient-button);
    color: white;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
}

.btn-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
}

footer {
    background: linear-gradient(180deg, var(--color-sky-100) 0%, var(--color-sky-200) 100%);
    padding: 60px 20px 30px;
    margin-top: 80px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-button);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-block h4 {
    font-family: 'Quicksand', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 700;
}

.footer-block p,
.footer-block ul {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-block ul {
    list-style: none;
}

.footer-block ul li {
    margin-bottom: 10px;
}

.footer-block ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-block ul li a:hover {
    color: var(--color-sky-600);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(14, 165, 233, 0.2);
    color: var(--text-light);
    font-size: 14px;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        box-shadow: var(--shadow-medium);
        border-radius: 0 0 20px 20px;
        gap: 8px;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li.nav-contact {
        margin-top: 10px;
    }

    nav ul li.nav-contact a {
        display: block;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 70px 20px 100px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 30px 20px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shimmer {
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

#cookieBanner{
  position:fixed !important;
  z-index:999999 !important;
  left:0;
  bottom:24px;
  transform:translateX(-20px);
  width:auto;
  max-width:min(380px, calc(100vw - 24px)) !important;
  padding:18px 18px 16px;
  box-sizing:border-box !important;
  border-radius:0 16px 16px 0;
  background:#ffffff;
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:0 20px 60px rgba(0,0,0,0.22);
  color:#111827;
  opacity:0;
  pointer-events:none;
  transition:opacity .28s ease, transform .28s ease;
  font-family:inherit;
}

#cookieBanner.show{
  opacity:1;
  transform:translateX(0);
  pointer-events:auto;
}

.cookie-panel-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:8px;
}

.cookie-chip{
  display:flex;
  align-items:center;
  gap:6px;
  padding:4px 10px;
  border-radius:999px;
  background:#eef2ff;
  border:1px solid rgba(79,70,229,0.25);
}

.cookie-chip-img{
  width:14px;
  height:14px;
  display:block;
}

.cookie-chip-text{
  font-size:11.5px;
  font-weight:700;
  color:#4338ca;
}

.cookie-panel-title{
  margin:0;
  font-size:15px;
  font-weight:700;
}

.cookie-panel-text{
  margin:6px 0 10px;
  font-size:13px;
  line-height:1.5;
  color:#374151;
  overflow-wrap:anywhere;
}

.cookie-panel-links{
  font-size:12.5px;
  margin-bottom:14px;
  color:#6b7280;
}

.cookie-panel-link{
  color:#4f46e5;
  text-decoration:none;
  border-bottom:1px solid rgba(79,70,229,0.35);
}

.cookie-panel-link:hover{
  border-bottom-color:rgba(79,70,229,0.9);
}

.cookie-panel-actions{
  display:flex;
  gap:10px;
}

.cookie-panel-btn{
  flex:1;
  padding:10px 12px;
  border-radius:10px;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
  border:1px solid transparent;
}

.cookie-panel-btn-solid{
  background:#4f46e5;
  color:#ffffff;
  border-color:rgba(0,0,0,0.06);
}

.cookie-panel-btn-ghost{
  background:#f3f4f6;
  color:#111827;
  border-color:rgba(0,0,0,0.08);
}

.cookie-panel-btn-solid:hover{
  background:#4338ca;
}

.cookie-panel-btn-ghost:hover{
  background:#e5e7eb;
}

@media (max-width:520px){
  #cookieBanner{
    left:12px;
    right:12px;
    bottom:12px;
    border-radius:14px;
    max-width:none !important;
  }
}

html,body{
  max-width:100%;
  overflow-x:hidden;
}
