.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}



:root {
    --dark-blue: #203d57;
    --gray-text: #4a5968;
    --light-gray-bg: #f2f4f5;
    --button-bg: #919699;
    --button-hover: #7a8083;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-blue);
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

.actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.actions .btn {
    background: var(--button-bg);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.actions .btn:hover {
    background: var(--button-hover);
}

.actions .search {
    width: 32px;
    height: 32px;
    background: var(--light-gray-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.actions .search svg {
    width: 16px;
    height: 16px;
    fill: var(--dark-blue);
}

main {
    padding: 40px 8%;
}

main h1 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 24px;
}

.job-entry {
    background: var(--light-gray-bg);
    padding: 12px 16px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 600px;
    margin-bottom: 24px;
}

.job-entry span {
    font-size: 18px;
    color: var(--dark-blue);
}

.job-entry .arrow svg {
    width: 16px;
    height: 16px;
    fill: var(--gray-text);
}

.details {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 24px;
}

.details p {
    margin-bottom: 8px;
}

.details a {
    color: #1a73e8;
}


.content {
    padding: 0 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.content h2 {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #1d2e3e;
}

.content p {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.left-aligned {
    width: 58%;
    margin-right: auto;
    padding-right: 25px;
    text-align: justify;
    margin-top: 10px;
}

.download {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.download img {
    width: 20px;
    height: auto;
}

.download span {
    color: #1d2e3e;
    font-size: 14px;
    text-decoration: none;
}

.figures {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

figure {
    flex: 1;
    text-align: left;
    margin-bottom: 30px;
}

figure img {
    max-width: 100%;
    border: none;
    background: #f7f7f7;
    padding: 10px;
}

figcaption {
    font-size: 11px;
    margin-top: 10px;
    text-align: left;
    color: #333;
    line-height: 1.4;
}

.right-aligned {
    float: right;
    width: 35%;
    margin-left: 20px;
    margin-bottom: 20px;
    margin-top: -60px;
    clear: right;
    position: relative;
    top: -20px;
}

#figure4 {
    margin-left: 2%;
}

#figure4 img {
    max-width: 100%;
    display: block;
}

#figure4 figcaption {
    width: 100%;
}



.btns {
    display: flex;
    gap: 10px;
}

.btns button {
    background: #f1f1f1;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}

.btns button:last-child {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.content {
    padding: 60px 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.content h1 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #243444;
    font-weight: 600;
}

.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 1200px) {
    .products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products {
        grid-template-columns: 1fr;
    }
}

.product {
    background-color: #f2f2f2;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    object-fit: contain;
}

.product .desc {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 5px;
}

.product .subtext {
    color: #666;
    font-size: 13px;
    font-style: italic;
}

.product button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.show-more {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.show-more button {
    background: #ccc;
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    font-size: 14px;
}