body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

footer {
    background-color: #3aa83e;
    color: #fff;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-logo img {
    width: 120px; /* Adjust based on your logo size */
    margin-bottom: 10px;
}

.footer-logo p {
    max-width: 200px;
}

.footer-site-links, .footer-quick-links, .footer-follow-us {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-site-links h3, .footer-quick-links h3, .footer-follow-us h3 {
    margin-bottom: 15px;
}

.footer-site-links p, .footer-quick-links ul, .footer-follow-us p {
    margin: 5px 0;
}

.footer-quick-links ul {
    list-style: none;
    padding: 0;
}

.footer-quick-links ul li {
    margin: 5px 0;
}

.footer-quick-links ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-quick-links ul li a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a img {
    width: 40px; /* Adjust based on your icon size */
    height: 30px;
}

.footer-follow-us p {
    margin-top: 15px;
    font-size: 14px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px); /* Optional: Adds a slight slide-up effect */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.paragraph-container {
    background-color: #f4f4f4; /* Light background color for contrast */
    padding: 20px;             /* Padding around the text */
    border-radius: 10px;       /* Rounded corners */
    margin: 20px 0;            /* Margin to separate it from other elements */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    max-width: 800px;          /* Maximum width for better readability */
    margin-left: auto;         /* Center align */
    margin-right: auto;        /* Center align */
    animation: fadeIn 1s ease-in-out; /* Apply the fade-in animation */
}

.paragraph-container h2 {
    font-size: 24px;           /* Larger font size for the heading */
    margin-bottom: 15px;       /* Space below the heading */
    color: #131315;            /* Heading color matching the footer */
}

.paragraph-container p {
    font-size: 16px;           /* Base font size */
    line-height: 1.6;          /* Line height for better readability */
    color: #333;               /* Dark gray text color */
    margin-bottom: 15px;       /* Space between paragraphs */
}

.paragraph-container p:last-child {
    margin-bottom: 0;          /* Remove margin from the last paragraph */
}

.paragraph-container strong {
    color: #2b2e83;            /* Highlight text in the paragraph */
}

.button-container {
    text-align: center;        /* Center align the button */
}

.button-container button {
    background-color: #2b8331; /* Button color */
    color: #fff;               /* Text color */
    padding: 10px 20px;        /* Padding inside the button */
    border: none;              /* Remove border */
    border-radius: 5px;        /* Rounded corners */
    cursor: pointer;           /* Pointer cursor on hover */
    font-size: 16px;           /* Font size */
    transition: background-color 0.3s ease; /* Smooth transition */
}

.button-container button:hover {
    background-color: #0f0a0e; /* Darker shade on hover */
}

