/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url('images/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Container for content */
.container {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    padding: 40px 50px;
    max-width: 700px;
    width: 100%;
    text-align: center;
}

/* Headings */
h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Paragraphs */
p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* Buttons */
button,
.button-link {
    background-color: #3a86ff;
    color: #fff;
    padding: 12px 22px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

button:hover,
.button-link:hover {
    background-color: #265ecf;
}
