body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f3ec78, #af4261);
    color: #444;
    line-height: 1.8;
}

.results-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: fadeIn 1s ease-in-out;
}

h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
    text-transform: capitalize;
}

p.intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
}

.numerology-details {
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
    background: #f7f7f7;
}

.numerology-details .section {
    margin-bottom: 30px;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.numerology-details .section:last-child {
    border-bottom: none;
}

.numerology-details h2 {
    font-size: 1.8rem;
    color: #34495e;
    margin-bottom: 10px;
}

.numerology-details p {
    font-size: 1rem;
    color: #666;
    margin: 5px 0;
    line-height: 1.6;
}

.footer {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 20px;
}

button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: #2ecc71;
    border: none;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #27ae60;
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .results-container {
        margin: 20px;
        padding: 15px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .numerology-details h2 {
        font-size: 1.5rem;
    }

    .numerology-details p {
        font-size: 0.95rem;
    }

    button {
        font-size: 0.9rem;
    }
}
