body, h1, p, img {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(to bottom right, #eaf3fb, #f7f9fc);
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    overflow-x: hidden;
    padding: 40px;
    text-align: center;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    background: linear-gradient(to right, #00aa00, #007700);
    background-clip: text;
    color: transparent;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

p {
    font-size: 22px;
    color: #555;
    line-height: 1.4;
    margin: 10px 0;
    max-width: 700px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards;
}

.image {
    width: 80%;
    max-width: 750px;
    margin: 30px 0;
    border-radius: 18px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: scale(0.95);
    animation: fadeInScale 1s forwards;
}

.image:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 30px rgba(0,0,0,0.25);
}

.disclaimer-box {
    background-color: #fff9dc;
    border: 1px solid #f1c40f;
    border-left: 5px solid #f1c40f;
    padding: 20px 25px;
    border-radius: 12px;
    max-width: 700px;
    margin: 20px 0;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.disclaimer-box p {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #333 !important;
    margin: 10px 0 !important;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    max-width: none !important;
    text-align: left !important;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}
