/* Reset default margin and padding */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Basic styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #1a1a1a;
    color: #ccc;
    padding: 20px;
}

header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Increased blur and spread radius */
}

nav {
    background-color: #2a2a2a;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Increased blur and spread radius */
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #ccc;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #dc143c;
}

section {
    margin: 50px auto; /* Increased top margin to push content down */
    width: 80%; /* Increased width for better readability */
    background-color: #333;
    color: #ccc;
    padding: 20px;
    border-radius: 5px;
    text-align: left; /* Align text to the left */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Increased blur and spread radius */
}

/* Accent color */
.accent {
    color: #dc143c;
}

/* Dark button style */
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #555;
}

/* Style for two side-by-side paragraphs */
.persona-container {
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space items evenly */
}

.persona {
    width: 48%; /* Set width for each persona */
    text-align: left; /* Align text to the left */
    padding: 0 10px; /* Add padding to the right and left of each persona */
}
       /* Style for two side-by-side paragraphs */
       .persona-container {
        display: flex; /* Use flexbox for layout */
        justify-content: space-between; /* Space items evenly */
    }
    
    .persona h3 {
        text-align: center; /* Center-align the h3 headings */
    }

    .persona img {
        max-width: 100%;
        height: auto;
        margin-bottom: 10px;
    }

    .plan-container {
        display: flex; /* Use flexbox for layout */
        justify-content: space-between; /* Space items evenly */
    }

    .plan {
        width: 48%; /* Set width for each paragraph */
        text-align: left; /* Align text to the right */
        padding: 0 10px; /* Add padding to the right and left of each paragraph */
    }

    /* Image styles */
    .plan img {
        max-width: 100%;
        height: auto;
        margin-bottom: 10px; /* Add space between image and heading */
    }

    .video-container {
        display: flex; /* Use flexbox for layout */
        justify-content: space-between; /* Space items evenly */
    }
    
    .video {
        flex: 1; /* Allow the video divs to grow and shrink */
        text-align: center; /* Center-align the video */
        background-color: #333;
        color: #ccc;
        padding: 20px;
        border-radius: 5px;
        margin: 0 10px; /* Add margin to separate videos */
    }
    
    
    .video h3 {
        text-align: center;
        margin-bottom: 10px;
    }

    .video-text {
        text-align: center; /* Center-align the text */
        margin-top: 10px; /* Add some space between the video and text */
    }
    
    .video-text p {
        margin: 0; /* Remove default margin for paragraphs */
    }

    .findings-container {
        display: flex;
        justify-content: space-between;
    }
    
    .finding {
        width: 48%; /* Set width for each finding */
        padding: 10px;
        background-color: #333;
        border-radius: 5px;
    }
    
    .finding h3 {
        text-align: center;
    }
    
    .finding p {
        text-align: left;
    }

/* Centered h2 */
section h2 {
    text-align: center;
}

h3 {
    text-align: center;
    color: #ff9999; /* Light red color */
}

section ul {
    padding: 20px;
}