body {
    font-family: 'Roboto', sans-serif;
    margin: 0px;   
}
.header {
    position: relative;
    text-align: center;
    color: white;
}
.header img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    padding: 30px;
}
.header img:hover {
    transform: scale(1.05);
}
.header .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: fadeIn 2s ease-in-out;
}
.header h1 {
    font-size: 48px;
    margin: 0;
}
.header p {
    font-size: 18px;
    margin: 10px 0;
}
.header .button {
    background-color: #ff7f00;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}
.header .button:hover {
    background-color: #e66b00;
}
.content {
    text-align: center;
    padding: 50px 20px;
    transition: transform 0.3s ease;
}
.content:hover {
    transform: scale(1.02);
}
.content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
}
.boxes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.box {
    width: 300px;
    padding: 20px;
    color: white;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideIn 1s ease-in-out;
}
.box.blue {
    background-color: #2a2a8e;
}
.box.orange {
    background-color: #ff7f00;
}
.box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
.box p {
    font-size: 16px;
    line-height: 1.5;
}
.checklist {
    display: flex;
    justify-content: right;
    align-items: center;
    padding: 50px 20px;
    text-align: left;
}
.checklist img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-right: 20px;
    animation: fadeIn 2s ease-in-out;
    transition: transform 0.3s ease;        
}
.checklist img:hover {
    transform: scale(1.05);
}
.checklist ul {
    font-size: 16px;
    line-height: 1.5;
    animation: fadeIn 2s ease-in-out;
    transition: transform 0.3s ease;
}
.checklist ul:hover {
    transform: scale(1.02);
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.checklist ul {
    list-style-type: disc;    /* Sets bullet type to filled circle */
    padding-left: 20px;       /* Indents the list for better readability */
    margin-top: 10px;         /* Adds space above the list */
    font-size: 16px;          /* Adjusts font size for readability */
    line-height: 1.6;         /* Improves line spacing for multi-line items */
}

.checklist li {
    margin-bottom: 8px;       /* Adds space between items */
}
/* Responsive layout for screens 992px and below */
@media (max-width: 992px) {
    .boxes, .checklist {
        flex-direction: column;
        align-items: center;
        gap: 10px; /* Adds spacing between each box in the column layout */
    }
    .checklist img {
        max-width: 90%;
        margin-right: 0;
        margin-bottom: 0px;
    }
    .box {
        width: 100%;
        margin-bottom: 20px; /* Adds space between boxes */
    }
    .checklist ul {
        margin-top: 20px; /* Adds space above the checklist */
    }
}

/* Responsive layout for screens 768px and below */
@media (max-width: 768px) {
    .content, .header .text {
        padding: 0px;
    }
    .header h1 {
        font-size: 36px;
    }
    .header p, .checklist ul, .box p {
        font-size: 14px;
    }
    .checklist {
        text-align: center;
        margin-top: 20px; /* Adds space above the checklist */
    }
}

/* Responsive layout for screens 576px and below */
@media (max-width: 576px) {
    .content, .header, .boxes{
        padding: 0px;
    }
    .checklist {
        padding: 20px;
    }
    .header h1 {
        font-size: 28px;
    }
    .header .button {
        padding: 8px 16px;
        font-size: 14px;
    }
    .checklist ul {
        padding-left: 10px;
        margin-top: 20px; /* Adds space above the checklist */
    }
    .box {
        width: 100%;
        margin-bottom: 20px; /* Adds space between boxes */
    }
}
