@font-face {
    font-family: 'Merriweather';
    src: url('font/static/Merriweather_48pt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Merriweather';
    src: url('font/static/Merriweather_48pt-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: rgb(0, 115, 112);
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Merriweather', serif;
    margin: 0;
    padding: clamp(1rem, 5vw, 3rem);
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 90, 88, 0.7);
    padding: clamp(1.5rem, 5vw, 3rem);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(198, 163, 62, 0.25);
}

h1 {
    color: #dcb84b;
    margin-top: 0;
    letter-spacing: 0.05em;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    border-bottom: 1px solid rgba(198, 163, 62, 0.18);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

a {
    color: #dcb84b;
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: #fffbe0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

.back-link svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    fill: currentColor;
}

.obfuscated-text {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
}


.contact-group {
    margin-top: 2rem;
}

.contact-group strong {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
}
