/* General Styles */
body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.header {
    background-image: url('https://images.unsplash.com/photo-1533134486753-c833f0ed4866?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 150px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header .overlay {
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for better text visibility */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    margin: 0;
    font-weight: 700;
    animation: fadeIn 2s ease-in-out;
}

.header p {
    font-size: 24px;
    margin: 10px 0 0;
    color: #ecf0f1;
    animation: fadeIn 2.5s ease-in-out;
}

/* Main Content Styles */
.main-content {
    padding: 60px 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: -80px auto 0;
    position: relative;
    z-index: 1;
    border-radius: 15px;
}

.disclaimer-section {
    margin-bottom: 50px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.disclaimer-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.disclaimer-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.disclaimer-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

/* Footer Styles */
.footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 40px 0;
    margin-top: 80px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-link {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ff6347; /* Tomato color on hover */
}

.footer-link i {
    margin-right: 8px;
}

.footer p {
    margin: 0;
    font-size: 14px;
    color: #ecf0f1;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 600px) {
    .header h1 {
        font-size: 36px;
    }

    .header p {
        font-size: 18px;
    }

    .disclaimer-section h2 {
        font-size: 28px;
    }

    .disclaimer-section p {
        font-size: 16px;
    }
}