@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: #2b2e83;            /* 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: 15px;       /* Space before the button */
}

.paragraph-container strong {
    color: #2b2e83;            /* Highlight text in the paragraph */
}

.button-container {
    text-align: center;        /* Center align the button */
}

.button-container button {
    background-color: #2b2e83; /* 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: #1f2267; /* Darker shade on hover */
}
