/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #6db1bf, #a2d5c6);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

/* Container */
.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
}

/* Icon */
.icon {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

/* Headings */
h1 {
    font-size: 2rem;
    margin: 0;
    color: #333;
}

/* Paragraph */
p {
    font-size: 1rem;
    margin: 15px 0;
    line-height: 1.5;
}

/* Contact Information */
.contact-info a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Button */
button {
    padding: 10px 20px;
    border: none;
    background: #28a745;
    color: #fff;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease;
}

button:hover {
    background: #218838;
}
