body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFF9E6; /* Light citrus background */
}

header {
    background: #FFA500; /* Orange color, reminiscent of oranges */
    color: #FFF;
    padding: 32px 32px;
    display: flex;
    align-items: center; /* aligns items vertically in the center */
    justify-content: center; /* centers items horizontally */
}

header a img {
    margin-right: 20px; /* Adds spacing between the logo and the title */
}

header h1 {
    margin: 0;
    font-size: 24px;
}

nav {
    background: #FFD700; /* Lemon yellow for the navigation bar */
    padding: 10px 20px;
    text-align: center;
    white-space: nowrap; /* Prevent wrapping */
    overflow: hidden; /* Hide overflow */
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
}

nav a:hover {
    background: #FFB347; /* Softer orange on hover */
}

.content {
    padding: 20px;
    box-sizing: border-box;
}

.cta-buttons {
    display: flex;
    justify-content: center; /* Centers the buttons horizontally */
    gap: 10px; /* Adds space between buttons */
}

.call-to-action {
    display: block;
    width: 200px;
    margin: 10px; /* Adjust margin as needed */
    padding: 15px; /* Increased padding for larger button size */
    text-align: center;
    background: #32CD32; /* Lime green for call to action buttons */
    color: white;
    text-decoration: none;
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

.call-to-action:hover {
    background: #28a745; /* Darker lime green on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Increased shadow on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

footer {
    background: #228B22; /* Darker green, evoking lime leaves */
    color: #FFF;
    text-align: center;
    padding: 10px 20px;
    box-sizing: border-box;
}

footer a {
    color: #FFD700; /* Lemon yellow for links */
    text-decoration: none;
}

/* Max width for larger screens */
.container {
    max-width: 960px;
    margin: auto;
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header h1, nav a, .call-to-action, footer p {
        font-size: 16px;
    }
    nav a {
        padding: 5px 5px; /* Reduce padding for nav links */
        font-size: 14px; /* Reduce font size for nav links */
    }
    .call-to-action {
        padding: 16px;
        font-size: 14px;
    }
    .content, header, nav, footer {
        padding: 16px;
    }
    header a img {
        width: 80px;
    }
    .cta-buttons {
        flex-direction: column; /* Stacks the buttons vertically on smaller screens */
        align-items: center; /* Aligns buttons to the center */
    }
    .call-to-action {
        width: 100%;
        box-sizing: border-box;
    }
}
