@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100..700;1,100..700&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

.fb-section {
    position: relative;
    width: 100%;
    display: flex;
    min-height: 100vh;
    background-color: #fff;
    overflow: hidden;
}

.fb-column-image {
    width: 50%;
    position: relative;
}

.fb-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fb-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fb-column-text {
    width: 50%;
    padding: 80px 8% 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fb-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.fb-title {
    font-family: 'Rubik', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.1;
}

.fb-new-tag {
    width: 80px;
    height: auto;
}

.fb-new-tag img {
    width: 100%;
    height: auto;
    display: block;
}

.fb-subtitle {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #000;
    margin: 0 0 30px 0;
    text-transform: uppercase;
}

.fb-content {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 40px;
    max-width: 500px;
}

.fb-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

.fb-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.fb-item-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.fb-item-icon svg {
    width: 22px;
    height: 22px;
}

.fb-item-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 18px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.6);
    margin: 0 0 5px 0;
    text-transform: uppercase;
}

.fb-item-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 18px;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
}

.fb-button {
    margin-top: 40px;
    display: inline-block;
    padding: 15px 40px;
    background-color: #000;
    color: #fff !important;
    text-decoration: none;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: 16px;
    border-radius: 50px;
    text-transform: uppercase;
    width: fit-content;
    transition: transform 0.2s ease;
}

.fb-button:hover {
    transform: scale(1.02);
}

/* Responsiveness */
@media (max-width: 1024px) {
    .fb-title {
        font-size: 42px;
    }
    .fb-column-text {
        padding: 60px 5%;
    }
}

@media (max-width: 768px) {
    .fb-section {
        flex-direction: column;
    }
    .fb-column-image {
        width: 100%;
        height: 400px;
    }
    .fb-column-text {
        width: 100%;
        padding: 60px 20px;
    }
    .fb-title {
        font-size: 36px;
    }
    .fb-new-tag {
        width: 60px;
    }
    .fb-items {
        padding-top: 20px;
    }
}
