.angebote-section {
    padding: 2rem 0;
    background-color: rgb(31, 41, 55);
}

.angebote-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    padding: 0.5rem;
}

.section-title {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    text-align: center;
}

.buttons-top {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.package-button {
    display: inline-block;
    background-color: rgb(59, 130, 246);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-width: 140px;
}

.package-button:hover {
    background-color: rgb(55, 126, 240);
    transform: translateY(-2px);
}

.package-button:active {
    transform: translateY(0);
}

.comparison-table, .addon-table, .custom-code-table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgb(55, 65, 81);
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.comparison-table th, .addon-table th, .custom-code-table th {
    background-color: rgb(59, 130, 246);
    color: white;
    font-weight: 600;
    padding: 0.75rem;
    text-align: center;
}

.comparison-table td, .addon-table td, .custom-code-table td {
    padding: 0.75rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-row:nth-child(odd) {
    background-color: rgb(45, 55, 71);
}

.table-row:hover {
    background-color: rgb(75, 85, 101);
    transition: background-color 0.3s ease;
}

.table-header {
    background-color: rgb(59, 130, 246);
    color: white;
    font-weight: 600;
    padding: 0.75rem;
    text-align: center;
}

.table-cell {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgb(209, 213, 219);
}

.comparison-table .table-cell:first-child,
.addon-table .table-cell:first-child,
.custom-code-table .table-cell:first-child {
    font-weight: 500;
    color: rgb(209, 213, 219);
}

/* Mobile-specific styles */
.comparison-table-mobile, .addon-table-mobile, .custom-code-table-mobile {
    display: none;
}

.package-card, .addon-card, .custom-code-card {
    background-color: rgb(55, 65, 81);
    border-radius: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.package-title {
    background-color: rgb(59, 130, 246);
    color: rgb(255, 255, 255);
    font-size: 1.5rem;
    border-radius: 1rem 1rem 0rem 0rem;
    padding: 0.5rem;
    text-align: center;
}

.feature-item, .addon-card, .custom-code-card {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    margin: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-name, .addon-name, .custom-code-name {
    font-weight: 500;
    color: rgb(207, 210, 214);
    margin-bottom: 0.1rem;
}

.feature-value, .addon-description, .custom-code-pro, .custom-code-con {
    color: rgb(167, 172, 183);
}

.custom-code-pro::before {
    content: "Pro: ";
    color: rgb(52, 178, 51);
    font-weight: 600;
}

.custom-code-con::before {
    content: "Contra: ";
    color: rgb(207, 16, 32);
    font-weight: 600;
}

.desktop-only {
    display: table;
}

@media (max-width: 900px) {
    .comparison-table {
        display: none;
    }

    .comparison-table-mobile {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .addon-table-mobile, .custom-code-table-mobile {
        display: block;
    }

    .addon-card {
        padding: 1rem;
    }

    .addon-name {
        color: rgb(101, 157, 248);
        font-weight: 600;
        font-size: 20px;
    }

    .addon-description {
        color: rgb(187, 198, 207);
        font-size: 16px;
    }

    .comparison-table-mobile {
        display: flex;
        gap: 0.5rem;
    }


    .section-title {
        font-size: 1.5rem;
    }

    .package-button {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .angebote-container {
        padding: 0.5rem;
    }

    .custom-code-name {
        color: rgb(101, 157, 248);
        font-weight: 600;
        font-size: 20px;
    }
}

@media (max-width: 625px) {
    .comparison-table-mobile {
        display: block;
    }

    .feature-name {
        margin-bottom: 0px;
    }

    .feature-item {
        padding: 0.2rem 0;
    }
}

@media (max-width: 400px) {
    .buttons-top {
        flex-direction: column;
        align-items: center;
    }

    .addon-card {
        padding: 1rem;
        margin: 10px;
    }

    .addon-name {
        color: rgb(101, 157, 248);
        font-weight: 600;
        font-size: 20px;
    }

    .addon-description {
        color: rgb(187, 198, 207);
        font-size: 16px;
    }

    .package-button {
        width: 100%;
        max-width: 200px;
        margin-bottom: 0.5rem;
    }
}

.check-mark {
    color: rgb(52, 178, 51);
    font-weight: 700;
}

.cross-mark {
    color: rgb(207, 16, 32);
    font-weight: 700;
}