@import url('[https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap](https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap)');

body {
    font-family: 'Inter', sans-serif;
    background-color: #fce7f3; /* Light pink background */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 1rem;
    box-sizing: border-box;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

/* Custom selection styling */
::selection {
    background-color: #f9a8d4;
    color: white;
}

::-moz-selection {
    background-color: #f9a8d4;
    color: white;
}

.main-container {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 48rem;
    width: 100%;
    text-align: center;
    border: 4px solid #fbcfe8;
}

@media (min-width: 768px) {
    .main-container {
        padding: 2.5rem;
    }
}

.header-section {
    margin-bottom: 2rem;
}

.header-section h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #db2777;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .header-section h1 {
        font-size: 3rem;
    }
}

.header-section p {
    font-size: 1.125rem;
    color: #4b5563;
}

@media (min-width: 768px) {
    .header-section p {
        font-size: 1.25rem;
    }
}

.main-content {
    margin-bottom: 2rem;
}

.content-box {
    background-color: #fdf2f8;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #fbcfe8;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    text-align: left;
}

.content-box p {
    color: #1f2937;
    font-size: 1rem;
    line-height: 1.625;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .content-box p {
        font-size: 1.125rem;
    }
}

.image-section {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.image-section img {
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    max-width: 400px;
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.image-section p {
    color: #4b5563;
    font-size: 0.875rem;
    font-style: italic;
    text-align: center;
}

.footer-section {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 2rem;
}