
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
}

/* Full screen layout */
header, main, section, footer {
    width: 100%;
}

/* Header styles */
header {
    background-color: #FFF;
    color: #442d7b;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    max-height: 50px;
}

body h1{
    font-size: 28px;
    text-align: center;
    background-color: #442d7b;
    color:white;
    padding: 5px;
}

.button-primary {
    display: inline-block;  /* Ensures the anchor behaves like a button */
    color: white;  /* White text color */
    background-color: #01b079;  /* Background color */
    padding: 10px;  /* Padding all around */
    border-radius: 10px;  /* Rounded corners */
    text-decoration: none;  /* Removes underline from the anchor */
    font-size: 20px;  /* Adjust font size as needed */
    text-align: center;  /* Center the text */
    border: 2px #018d61 solid;
    transition: all 0.3s ease-in-out;
    margin:10px;
}

.button-primary:hover {
    cursor: pointer;
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Soft shadow */
}


/* Main middle section */
main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 50px 0 50px;
    background-color: #f3f3f3;
    background: linear-gradient(135deg, #e3e6f3, #ffffff); /* Soft modern gradient */
    color: #2c2366; /* Deep, modern contrast */
}

.content {
    display: flex;
    width: 80%;
    max-width: 1200px;
    align-items: flex-start; /* Align the image and bio at the top */
}

.content img {
    max-width: 50%;
    max-height: 468px;
    margin-right: 50px;
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Soft edges for a premium look */
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
}

.bio {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Ensures the bio content aligns with the top */
    max-width: 600px;
}

.bio h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.bio h3 {
    margin: 10px 0 5px 0;
    font-size: 20px;
}

.bio p {
    font-size: 18px;
    line-height: 1.25;
    margin-top: 5px;
}

/* Bottom section with policies */
.policies {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: auto;
}

/* Responsive layout: stack items in a single column on smaller screens */
@media (max-width: 768px) {
    .policies {
        grid-template-columns: 1fr;
    }
}

.policies div {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.policies div:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.policies h3 {
    color: #AAA;
    font-size: 1.6rem;
    font-weight: 600;
    background: linear-gradient(90deg, #442d7b, #6610F2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    letter-spacing: 0.8px;
}

.policies p {
    font-size: 1rem;
    font-weight: 300;
    color: #444;
    line-height: 1.7;
    letter-spacing: 0.3px;
}

.follow {
    display: inline-block;  /* Ensures elements stay side by side */
    margin: 0 15px; /* Adds space between items */
    font-size: 24px; /* Adjust text size */
    font-weight: bold; /* Makes it stand out */
}

.follow a {
    text-decoration: none; /* Removes underline */
    color: #333; /* Default color */
    transition: color 0.3s ease-in-out; /* Smooth color transition */
}

.follow a:hover {
    color: #442d7b; /* Modern blue hover effect */
}

/* Footer */
footer {
    background-color: #442d7b;
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 14px;
}


/* Responsive adjustments */
@media (max-width: 1024px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    header img {
        margin-bottom: 10px;
    }

    header h1 {
        font-size: 20px;
        margin: 0;
    }

    .content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .content img {
        width: 100%;
        max-width: 500px;
        margin: 0 0 30px 0;
    }

    .bio {
        align-items: center;
        max-width: 100%;
    }
}
