/* Base styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #fef6e4, #f3e5ab);
    color: #333;
    text-align: center;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.carrot-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

header h1 {
    font-size: 2.5rem;
    color: #ff9900;
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 2rem; /* Increased spacing between link cards */
}

.link-card {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.link-card h2 {
    font-size: 1.5rem;
    color: #333;
}

.link-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.button {
    text-decoration: none;
    color: #fff;
    background: #ff9900;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
    margin: 0.5rem; /* Added spacing around buttons */
    display: inline-block;
}

.button:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.2);
    background: #cc7a00;
}

footer {
    margin-top: 2rem;
    color: #333;
    font-size: 0.9rem;
}

footer .carrot {
    color: #ff9900;
}