/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 body {
    font-family: 'Roboto Condensed', sans-serif;
    background: #f0f0f0;
    line-height: 1.6;
    color: #280a22;
} 

/* SaaS Section */
.wrapper {
    width: 80%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.saas-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-title {
    font-size: 1.4rem;
    color: #280a22;
    margin-bottom: 12px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: #aa0144;
    bottom: -5px;
    left: 0;
}

.saas-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.saas-card {
    background: white;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    color: #280a22;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    width: 100%;
}

.saas-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.saas-logo {
    width: 120px;
    height: 120px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.saas-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.saas-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
}

.saas-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.saas-card h3 {
    font-size: 1.5rem;
    font-weight:400;
    margin-bottom: 5px;
}

.saas-card p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: #666;
}

.saas-cta {
    background: #aa0144;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    text-align: center;
}

.saas-cta:hover {
    background: #280a22;
    transform: scale(1.05);
}

.share-button {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
    background: #aa0144;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    align-self: center;
}

.share-button:hover {
    background: #280a22;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s, transform 0.5s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 767px) {
    .burger {
        display: flex;
    }

    .menu-items {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #f0f0f0;
        padding: 15px;
    }

    .menu-items.active {
        display: flex;
    }

    .menu-items li {
        margin: 8px 0;
    }

    .menu-items a {
        font-size: 16px;
    }

    .saas-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .saas-logo {
        width: 80px;
        height: 80px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .saas-content {
        flex-direction: column;
        align-items: center;
    }

    .saas-text {
        text-align: center;
    }

    .saas-cta {
        margin-top: 10px;
        width: 120px;
    }
}
