
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: #F4F6F5;
    color: #1E1E1E;
    line-height: 1.6;
}

header {
    background: #1F2D2A;
    padding: 20px 40px;
}

header a {
    color: white;
    margin-right: 24px;
    text-decoration: none;
    font-weight: 600;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}

h1 { font-size: 38px; margin-bottom: 24px; }
h2 { margin-top: 40px; font-size: 26px; }
h3 { margin-top: 24px; font-size: 20px; }

.section {
    background: white;
    padding: 40px;
    border-radius: 18px;
    margin-bottom: 40px;
}

.button {
    display: inline-block;
    background: #1F2D2A;
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: 600;
}

.button-outline {
    display: inline-block;
    border: 2px solid #1F2D2A;
    color: #1F2D2A;
    padding: 12px 26px;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 10px;
    font-weight: 600;
}

.placeholder {
    background: #E3E7E5;
    height: 220px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5C5C5C;
    margin-top: 16px;
    font-size: 14px;
    text-align: center;
    padding: 12px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 780px) {
    header { padding: 16px 16px; }
    .container { padding: 40px 16px; }
    .section { padding: 24px; }
    .grid-2 { grid-template-columns: 1fr; }
}

ul { padding-left: 20px; }

footer {
    background: #1F2D2A;
    color: white;
    padding: 40px;
    font-size: 14px;
}


.photo-frame {
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
    margin-top: 16px;
    background: #E3E7E5;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



/* --- Header nav layout (desktop + mobile) --- */
html { scroll-behavior: smooth; }

.site-header .header-nav{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
}

.site-header .header-nav .nav-link{
  display:inline-block;
  padding:10px 12px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  line-height:1;
}

@media (max-width: 768px){
  .site-header .header-nav{
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }
  .site-header .header-nav .nav-link{
    text-align:center;
    padding:12px 14px;
  }
}


.site-footer {
    background: #1F2D2A;
    color: white;
    padding: 40px;
    font-size: 14px;
    line-height: 1.7;
}

.site-footer a {
    color: #ffffff;
    text-decoration: none;
}

.site-footer a:visited,
.site-footer a:hover,
.site-footer a:active,
.site-footer a:focus {
    color: #ffffff;
}

.footer-title {
    font-size: 18px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 8px;
}

.footer-links a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-page h1 {
    margin-bottom: 30px;
}

.legal-page .section ul li + li,
.legal-page .section p + p {
    margin-top: 10px;
}

.important-note {
    padding: 14px 16px;
    border-radius: 12px;
    background: #fff4d8;
}

.placeholder-inline {
    background: #fff4d8;
    padding: 2px 6px;
    border-radius: 6px;
    font-weight: 600;
}

.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
    background: rgba(31, 45, 42, 0.96);
    color: #ffffff;
    border-radius: 16px;
    padding: 16px 18px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

.cookie-banner a {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-banner__text {
    font-size: 14px;
}

.cookie-banner__button {
    border: 0;
    border-radius: 10px;
    padding: 12px 18px;
    background: #ffffff;
    color: #1F2D2A;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner__button {
        width: 100%;
    }
}
