/* General styles */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    color: #333;
}

/* Container styles */
.container {
    text-align: center;
    padding: 40px 20px;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.container:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Logo styles */
.logo img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* Description styles */
.description {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.5;
}

/* Contact info styles */
.contact-info {
    font-size: 1em;
    color: #777;
}

.contact-info a {
    color: #0066cc;
    text-decoration: none;
    border-bottom: 1px dotted #0066cc;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.contact-info a:hover {
    color: #004999;
    border-bottom: 1px solid #004999;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }

    .description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 10px;
    }

    .description {
        font-size: 1em;
    }
}
