* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    user-select: none;
}

p {
    color: #94a3b8;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

a {
    cursor: pointer;
}

body {
    display: flex;
    flex-direction: column;
}

/*HEADER*/

Header {
    background-color: #0f172a;
    padding: 1.5% 5%;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: white;
}

.glHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.glHeaderText {
    padding: 1% 0 1% 0;
}

.Logo {
    font-size: 150%;
    color:white;
    font-weight: bolder;
}

.Logo span {
    color: #2563eb;
}

nav a {
    margin-right: 32px;
    color:white;
}

/*SECTIONONE*/

.sectionOne {
    width: 100%;
    height: auto;
    background-color: #0f172a;
    text-align: center;
}

.sectionOne h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10%;
    color: white;
    font-size: 350%;
     margin-bottom: 1%;
}

h1 span {
    margin-left: 1%;
    color: #2563eb;
    color: white;
}

.btnPageOne {
    display: inline-block;
    background-color: #3d76f0;
    width: 15%;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    margin-bottom: 5%;
    font-size: 110%;
    padding: 1% 2%;
}

.btnPageOne:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/*SECTIONTWO*/

.sectionTwo {
    background-color: white;
    padding-top: 5%;
    width: 100%;
    height: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
}

h2 {
    display: block;
    font-size: 250%;
    margin-block-start: 0%;
    margin-block-end: 2%;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
    color: black;
}

h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: #2563eb;
    margin: 10px auto 0;
    border-radius: 2px;
}

.sectionTwo-text {
    max-width: 39%;
    margin: 0 auto;
    font-size: 110%;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 3%;
}

.strong {
    color: black;
    font-weight: bolder;
}

/*SECTIONTHREE*/

.sectionThree {
    background-color: rgb(237, 237, 237);
    padding-top: 5%;
    width: 100%;
    height: auto;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.flexContainerpageThree {
    display: flex;
    justify-content: space-evenly;
    margin: 2% 0% 3% 0%;
    width: 100%;
}

.flexContainer {
    background-color: white;
    width: 20%;
    padding: 3% 0 3% 0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    font-size: 150%;
    color: black;
}

.flexContainer:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: #4b84ff 1px solid;
}


/*SECTIONFOUR AND FOOTER*/

.sectionFour {
    background-color: #0f172a;
    display: flex;
    flex-direction: column;
    color: white;
    text-align: center;
    align-items: center;
}

.sectionFour h2 {
    margin-top: 3%;
    color: white;
}

.sectionFour p {
    color:white;
}

.btnPageFour {
    background-color: #10b981;
    width: 15%;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    margin-bottom: 5%;
    font-size: 110%;
    padding: 1% 2%;
}

.btnPageFour:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

footer {
    background-color: #0b0f19;
    color: #64748b;
    text-align: center;
    font-size: 1rem;
    border-top: 1px solid #1e293b;
    }
