/* Reset and basic setup */
html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
    background-color: #f3e5f5; /* Light purple background */
    color: #4a148c; /* Dark purple text */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

/* Header styles for Newsletter */
.header {
    width: 100%;
    background-color: #f3e5f5; /* Matches the light purple background */
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Drop shadow */
    position: fixed; /* Fixed at the top */
    top: 0;
    left: 0;
    z-index: 10; /* Ensures header stays on top */
}

.nav-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-link {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #6a1b9a; /* Purple text */
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-link:hover {
    background-color: #e1bee7; /* Light purple hover effect */
    transform: scale(1.05);
}

/* Main container styles */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    margin-top: 80px; /* Adds space below the fixed header */
}

/* Title styles */
.title {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 4rem;
    color: #6a1b9a; /* Purple for the title */
    margin: 0;
}

/* Link box styles */
.link-box {
    background-color: #e1bee7; /* Light purple for the link box */
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    padding: 20px 40px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
}

.link-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.link-box p {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #4a148c; /* Dark purple for the link text */
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}
