/* DownloadableGuide styles */
.tc-downloadable-guide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid #E78C85;
    border-radius: 12px;
    padding: 32px 20px;
    background-color: #fff;
    max-width: 420px;
    margin: 0 auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.tc-dg-content {
    margin-bottom: 16px;
    text-align: start;
    width: 100%;
}

.tc-dg-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: #222;
}

.tc-dg-description {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: start;
    width: 70%;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.tc-dg-icon {
    margin: 12px 0 20px;
    display: flex;
    gap: 15px;
}

.tc-dg-btn {
    background-color: #E78C85;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #E78C85;
    border-radius: 30px;
    padding: 12px 32px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 8px rgba(231, 140, 133, 0.25);
    position: absolute;
    bottom: -20px;
}

.tc-dg-btn:hover {
    background-color: #fff;
    color: #E78C85;
    box-shadow: 0 4px 10px rgba(231, 140, 133, 0.3);
}

@media (max-width: 600px) {
    .tc-downloadable-guide {
        padding: 24px 16px;
    }

    .tc-dg-btn {
        width: 100%;
    }
}