@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 50px; /* Add padding to prevent the elements from sticking to the edges */
}

header img {
    width: 250px;
    height: auto;
    padding: 50px;
}

body, html {
    font-family: 'Montserrat', sans-serif;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.box {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 30px;
    margin: 20px;
    background-color: #FFFFFF;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out;
}

.box:hover {
    transform: translateY(-5px);
}

.box-header {
    text-align: center;
    margin-bottom: 20px;
}

.box-header h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
}

.box-header i {
    margin-right: 10px;
    color: #C83D3D;
}

.ai-box .box-header i {
    color: rgb(25, 40, 79);
}

.app-content,
.ai-content {
    display: flex;
    align-items: center;
}

.app-content {
    flex-direction: row;
    justify-content: space-between;
}

.ai-content {
    flex-direction: row;
    justify-content: space-between;
}

.box ul {
    list-style-type: none;
    padding: 0;
}

.box ul li {
    color: #333333;
    margin-bottom: 10px;
    font-size: 18px;
}

.box ul li i {
    color: #C83D3D;
    margin-right: 10px;
}

.ai-box ul li i {
    color: rgb(25, 40, 79);
}

.box-image {
    width: 160px;
    margin-right: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ai-box .box-image {
    width: 250px;
    border-radius: 0px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
}

.fancy-button-apps,
.fancy-button-ai {
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
    cursor: pointer;
}

.fancy-button-apps {
    background-color: #C83D3D;
    color: white;
    border: 2px solid #C83D3D;
}

.fancy-button-apps:hover {
    background-color: white;
    color: #C83D3D;
}

.fancy-button-ai {
    background-color: rgb(25, 40, 79);
    color: white;
    border: 2px solid rgb(25, 40, 79);
}

.fancy-button-ai:hover {
    background-color: white;
    color: rgb(25, 40, 79);
}

@media (min-width: 768px) {
    .box {
        flex: 0 0 45%;
        max-width: 45%;
    }
}

.links-box .box-header i {
    color: #C83D3D;
}

.links-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.fancy-button-blog,
.fancy-button-linkedin {
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
    cursor: pointer;
    margin: 10px;
}

.fancy-button-blog {
    background-color: #C83D3D;
    color: white;
    border: 2px solid #C83D3D;
}

.fancy-button-blog:hover {
    background-color: white;
    color: #C83D3D;
}

.fancy-button-linkedin {
    background-color: rgb(25, 40, 79);
    color: white;
    border: 2px solid rgb(25, 40, 79);
}

.fancy-button-linkedin:hover {
    background-color: white;
    color: rgb(25, 40, 79);
}

.blog-post {
    max-width: 800px;
    margin: 0 auto;
}

.post-date {
    font-size: 14px;
    color: #888;
    margin-top: 5px;
}

.blog-content {
    line-height: 1.4;
}

.blog-content h3 {
    font-size: 22px;
    margin-top: 30px;
}

.blog-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.blog-content ul,
.blog-content li {
    font-size: 18px;
    margin-bottom: 20px;
}

.blog-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.blog-content ul ul {
    list-style-type: circle;
    margin-top: 10px;
    margin-left: 20px;
}

.blog-content a {
    color: #C83D3D;
    text-decoration: none;
    border-bottom: 1px solid #C83D3D;
    transition: border-bottom 0.3s;
}

.blog-content a:hover {
    border-bottom: 1px solid transparent;
}

.blog-content ol {
    list-style-type: decimal;
    padding-left: 20px;
    margin-top: 10px;
}

.blog-content ol li {
    font-size: 18px;
    margin-bottom: 10px;
}

.blog-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.blog-overview-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.blog-post .box-header h2 {
    font-size: 24px; /* Adjust the font size as needed */
    color: #333; /* Adjust the color as needed */
    margin-bottom: 10px; /* Adjust the margin as needed */
    text-decoration: none; /* Removes the underline */
}

.blog-post a {
    text-decoration: none;
}

.blog-post .box-header h2,
.blog-post .box-header .post-date {
    text-decoration: none;
}