body {
    background: linear-gradient(135deg, #fce4ec, #6a1b9a);
    font-family: 'Roboto', sans-serif; /* Replace Comic Sans with Roboto */
    color: #333;
}

header {
    border-bottom: 5px solid #d81b60;
}
header h1 {
    font-size: 3rem;
    text-shadow: 2px 2px #8e24aa;
    font-weight: 700; /* Bold for headings */
}
header .lead {
    font-style: italic;
}

main {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
h2 {
    color: #d81b60;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}
.btn-primary {
    background-color: #8e24aa;
    border-color: #8e24aa;
    font-weight: bold;
    transition: transform 0.2s;
}
.btn-primary:hover {
    transform: scale(1.1);
    background-color: #6a1b9a;
}

.card {
    border: 3px dashed #d81b60;
    background: #f3e5f5;
    transition: transform 0.3s;
}
.card:hover {
    transform: rotate(2deg);
}

footer {
    background: linear-gradient(135deg, #d81b60, #8e24aa) !important;
    font-size: 1.1rem;
    border-top: 5px solid #6a1b9a;
}
footer p {
    margin: 0;
}

input[type="tel"] {
    border: 2px solid #8e24aa;
    border-radius: 10px;
}
.text-danger {
    font-weight: bold;
    color: #d81b60;
}