* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #25D366, #128C7E);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 10px;
}

.container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Content container with frosted glass effect */
.content-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

header {
    text-align: center;
    margin-bottom: 30px;
    color: white;
}

.logo {
    margin-bottom: 20px;
}

.logo-img {
    max-width: 100px;
    height: auto;
    border-radius: 200px;
}

h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Links container */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

/* Link button styles */
.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    color: #075E54;
    text-decoration: none;
    padding: 1.4rem 1rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* WhatsApp icon alignment */
.link-button i {
    position: absolute;
    left: 20px;
    font-size: 1.4rem;
    color: #25D366;
}

/* Text alignment */
.link-button span {
    text-align: center;
    flex-grow: 1;
    padding: 0 30px;
}

/* Hover effect */
.link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: white;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 30px;
    color: white;
    font-size: 0.9rem;
    opacity: 0.8;
}

footer p {
    font-size: 0.7rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .content-container {
        padding: 20px;
    }
    
    .link-button {
        font-size: 0.9rem;
    }
    
    .link-button i {
        left: 15px;
        font-size: 1.2rem;
    }
}