@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,700;1,400&family=Reenie+Beanie&display=swap');

body {
    background-color: #ffdce0;
    background-image: radial-gradient(#ffb5c6 2px, transparent 2px);
    background-size: 30px 30px;
    font-family: 'Nunito', sans-serif;
    color: #4a4a4a;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.notebook {
    background-color: #fff;
    max-width: 600px;
    width: 100%;
    padding: 40px 50px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(255, 138, 163, 0.3);
    position: relative;
    background-image: repeating-linear-gradient(transparent, transparent 31px, #ffccd5 31px, #ffccd5 32px);
    line-height: 32px;
}

/* The pink vertical margin line */
.notebook::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background-color: #ff99aa;
}

h1 {
    color: #ff6688;
    text-align: center;
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(255, 181, 198, 0.5);
}

p {
    margin-bottom: 16px;
    font-size: 16px;
}

/* FAQ Specific Styles */
.question {
    font-size: 20px;
    font-style: italic;
    font-weight: bold;
    color: #ff5577;
    margin-bottom: 0;
}

.answer {
    margin-top: 0;
    margin-bottom: 24px;
}

/* Main Page Specific Styles */
.highlight {
    color: #ff5577;
    font-weight: bold;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
    align-items: center;
}

a.button {
    display: inline-block;
    background-color: #ff99aa;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(255, 153, 170, 0.3);
    width: 80%;
    text-align: center;
}

a.button:hover {
    background-color: #ff7788;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 119, 136, 0.4);
}

/* Shared Elements */
.signature {
    font-family: 'Reenie Beanie', cursive;
    font-size: 32px;
    color: #ff5577;
    text-align: right;
    margin-top: 20px;
    transform: rotate(-3deg);
}

.warning {
    margin-top: 40px;
    text-align: center;
    font-size: 12px;
    color: #888;
    font-style: italic;
    border-top: 1px dashed #ffccd5;
    padding-top: 20px;
    line-height: 20px;
}